blob: b435031aa55e4b3ec30bf837896099918c57ac1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
// +build darwin dragonfly freebsd netbsd openbsd
package term
import "golang.org/x/sys/unix"
const (
ioctlReadTermios = unix.TIOCGETA
ioctlWriteTermios = unix.TIOCSETA
)
|