🌐 AI搜索 & 代理
🔍
主页
Sign in
chromium
/
external
/
github.com
/
mattn
/
go-tty
/
refs/tags/v0.0.7
/
.
/
tty_bsd.go
blob: 8c01b6c709116916706006c5cd0b199059d2f036 [
file
] [
log
] [
blame
]
//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
)