14 lines
244 B
Go
14 lines
244 B
Go
//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
|
|
)
|