github.com/paybyphone/terraform@v0.9.5-0.20170613192930-9706042ddd51/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 }