Codebase list golang-github-moby-term / debian/0.0_git20210619.3f7ff69-1 termios_nonbsd.go
debian/0.0_git20210619.3f7ff69-1

Tree @debian/0.0_git20210619.3f7ff69-1 (Download .tar.gz)

termios_nonbsd.go @debian/0.0_git20210619.3f7ff69-1raw · history · blame

//+build !darwin,!freebsd,!netbsd,!openbsd,!windows

package term

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

const (
	getTermios = unix.TCGETS
	setTermios = unix.TCSETS
)