diff options
Diffstat (limited to 'vendor/github.com/kr/pty/ioctl.go')
-rw-r--r-- | vendor/github.com/kr/pty/ioctl.go | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/github.com/kr/pty/ioctl.go b/vendor/github.com/kr/pty/ioctl.go deleted file mode 100644 index c57c19e7e..000000000 --- a/vendor/github.com/kr/pty/ioctl.go +++ /dev/null @@ -1,13 +0,0 @@ -// +build !windows - -package pty - -import "syscall" - -func ioctl(fd, cmd, ptr uintptr) error { - _, _, e := syscall.Syscall(syscall.SYS_IOCTL, fd, cmd, ptr) - if e != 0 { - return e - } - return nil -} |