packer-cn/vendor/github.com/mattn/go-tty/tty_linux.go

9 lines
132 B
Go
Raw Normal View History

2019-02-27 11:01:02 -05:00
// +build linux
package tty
const (
ioctlReadTermios = 0x5401 // syscall.TCGETS
ioctlWriteTermios = 0x5402 // syscall.TCSETS
)