Files
query-orchestration/vendor/github.com/moby/term/termios_bsd.go
T
Michael McGuinness fc4214336e normaliseeol
2024-12-19 11:44:19 +00:00

14 lines
208 B
Go

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