Codebase list golang-github-moby-term / 20ba622c-e76a-4ba3-ad52-29ff00e63f78/main termios_nonbsd.go
20ba622c-e76a-4ba3-ad52-29ff00e63f78/main

Tree @20ba622c-e76a-4ba3-ad52-29ff00e63f78/main (Download .tar.gz)

termios_nonbsd.go @20ba622c-e76a-4ba3-ad52-29ff00e63f78/mainraw · history · blame

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

package term

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

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