twink/vendor/github.com/charmbracelet/x/term/term_unix_bsd.go
2025-12-05 12:20:05 +01:00

11 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
)