Codebase list golang-github-moby-term / debian/latest termios_bsd.go
debian/latest

Tree @debian/latest (Download .tar.gz)

termios_bsd.go @debian/latestraw · history · blame

//go:build darwin || freebsd || openbsd || netbsd
// +build darwin freebsd openbsd netbsd

package term

import (
	"golang.org/x/sys/unix"
)

const (
	getTermios = unix.TIOCGETA
	setTermios = unix.TIOCSETA
)