summaryrefslogtreecommitdiff
path: root/vendor/github.com/muesli/termenv/constants_unix.go
blob: 5d664245eae817930a29e00591f7d947ca122f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//go:build (darwin || dragonfly || freebsd || netbsd || openbsd) && !solaris && !illumos
// +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
)