summaryrefslogtreecommitdiff
path: root/vendor/github.com/jessevdk/go-flags/termsize.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/jessevdk/go-flags/termsize.go')
-rw-r--r--vendor/github.com/jessevdk/go-flags/termsize.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/github.com/jessevdk/go-flags/termsize.go b/vendor/github.com/jessevdk/go-flags/termsize.go
deleted file mode 100644
index df97e7e..0000000
--- a/vendor/github.com/jessevdk/go-flags/termsize.go
+++ /dev/null
@@ -1,28 +0,0 @@
-// +build !windows,!plan9,!solaris
-
-package flags
-
-import (
- "syscall"
- "unsafe"
-)
-
-type winsize struct {
- row, col uint16
- xpixel, ypixel uint16
-}
-
-func getTerminalColumns() int {
- ws := winsize{}
-
- if tIOCGWINSZ != 0 {
- syscall.Syscall(syscall.SYS_IOCTL,
- uintptr(0),
- uintptr(tIOCGWINSZ),
- uintptr(unsafe.Pointer(&ws)))
-
- return int(ws.col)
- }
-
- return 80
-}