github.com/dougneal/terraform@v0.6.15-0.20170330092735-b6a3840768a4/helper/wrappedstreams/streams_other.go (about) 1 // +build !windows 2 3 package wrappedstreams 4 5 import ( 6 "os" 7 ) 8 9 func initPlatform() { 10 // The standard streams are passed in via extra file descriptors. 11 wrappedStdin = os.NewFile(uintptr(3), "stdin") 12 wrappedStdout = os.NewFile(uintptr(4), "stdout") 13 wrappedStderr = os.NewFile(uintptr(5), "stderr") 14 }