diff options
Diffstat (limited to 'vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go')
-rw-r--r-- | vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go b/vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go new file mode 100644 index 000000000..ebb3fe87c --- /dev/null +++ b/vendor/gopkg.in/cheggaaa/pb.v1/termios_nix.go @@ -0,0 +1,7 @@ +// +build linux solaris +// +build !appengine + +package pb + +const ioctlReadTermios = 0x5401 // syscall.TCGETS +const ioctlWriteTermios = 0x5402 // syscall.TCSETS |