switch terminal_linux to x/sys/unix from syscall

Closes sirupsen/logrus/issues/515

Signed-off-by: Christy Perez <christy@linux.vnet.ibm.com>
This commit is contained in:
Christy Perez 2017-05-30 15:37:58 -04:00 committed by dmathieu
parent 8d4f6a97d3
commit a9ca4bfe68
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@
package logrus package logrus
import "syscall" import "golang.org/x/sys/unix"
const ioctlReadTermios = syscall.TCGETS const ioctlReadTermios = unix.TCGETS
type Termios syscall.Termios type Termios syscall.Termios