lazydocker/vendor/github.com/moby/term/termios_bsd.go
2022-05-14 12:44:00 +10: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
)