Codebase list golang-github-moby-term / 920cc645-4af3-45e5-909f-1ab453f827ab/main termios_nonbsd.go
920cc645-4af3-45e5-909f-1ab453f827ab/main

Tree @920cc645-4af3-45e5-909f-1ab453f827ab/main (Download .tar.gz)

termios_nonbsd.go @920cc645-4af3-45e5-909f-1ab453f827ab/mainraw · history · blame

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

package term

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

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