11 lines
172 B
Go
11 lines
172 B
Go
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
|
|
|
package terminal
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const (
|
|
tcgets = unix.TIOCGETA
|
|
tcsets = unix.TIOCSETA
|
|
)
|