1
0
mirror of https://gitea.com/gitea/tea.git synced 2024-09-15 04:28:11 -04:00
tea/vendor/github.com/muesli/termenv/constants_unix.go

13 lines
202 B
Go
Raw Normal View History

// +build darwin dragonfly freebsd netbsd openbsd
// +build !solaris
// +build !illumos
package termenv
import "golang.org/x/sys/unix"
const (
tcgetattr = unix.TIOCGETA
tcsetattr = unix.TIOCSETA
)