schnutibox/vendor/github.com/moby/term/termios_bsd.go

13 lines
158 B
Go
Raw Normal View History

// +build darwin freebsd openbsd netbsd
package term
import (
"golang.org/x/sys/unix"
)
const (
getTermios = unix.TIOCGETA
setTermios = unix.TIOCSETA
)