aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/peterh/liner/input_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/peterh/liner/input_linux.go')
-rw-r--r--Godeps/_workspace/src/github.com/peterh/liner/input_linux.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/Godeps/_workspace/src/github.com/peterh/liner/input_linux.go b/Godeps/_workspace/src/github.com/peterh/liner/input_linux.go
deleted file mode 100644
index 6ca87124e..000000000
--- a/Godeps/_workspace/src/github.com/peterh/liner/input_linux.go
+++ /dev/null
@@ -1,26 +0,0 @@
-// +build linux
-
-package liner
-
-import "syscall"
-
-const (
- getTermios = syscall.TCGETS
- setTermios = syscall.TCSETS
-)
-
-const (
- icrnl = syscall.ICRNL
- inpck = syscall.INPCK
- istrip = syscall.ISTRIP
- ixon = syscall.IXON
- opost = syscall.OPOST
- cs8 = syscall.CS8
- isig = syscall.ISIG
- icanon = syscall.ICANON
- iexten = syscall.IEXTEN
-)
-
-type termios struct {
- syscall.Termios
-}