mark2web/vendor/github.com/mattn/go-tty/tty_bsd.go

14 lines
244 B
Go
Raw Normal View History

2022-02-28 10:28:34 +01:00
//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
)