woodpecker/vendor/github.com/moby/term/termios_bsd.go
2021-09-26 14:43:14 +02:00

12 lines
158 B
Go

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