13 lines
173 B
Go
Raw Normal View History

2019-02-27 17:01:02 +01:00
// +build darwin dragonfly freebsd netbsd openbsd
package tty
import (
"syscall"
)
const (
ioctlReadTermios = syscall.TIOCGETA
ioctlWriteTermios = syscall.TIOCSETA
)