13 lines
166 B
Go
13 lines
166 B
Go
//+build !darwin,!freebsd,!netbsd,!openbsd,!windows
|
|
|
|
package term
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
getTermios = unix.TCGETS
|
|
setTermios = unix.TCSETS
|
|
)
|