forked from toolshed/abra
We were running behind and there were quite some deprecations to update. This was mostly in the upstream copy/pasta package but seems quite minimal.
12 lines
240 B
Go
12 lines
240 B
Go
//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
|
|
)
|