Sign in
chromium
/
external
/
github.com
/
mattn
/
go-tty
/
c5b63aa65acf77d25cc039fd90f0ee52afaa345c
/
.
/
tty_bsd.go
blob: 8c01b6c709116916706006c5cd0b199059d2f036 [
file
] [
log
] [
blame
]
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
// +build darwin dragonfly freebsd netbsd openbsd
package tty
import (
"golang.org/x/sys/unix"
)
const (
ioctlReadTermios = unix.TIOCGETA
ioctlWriteTermios = unix.TIOCSETA
)