Codebase list golang-github-moby-term / 6600ed69-b5d7-4c4d-9a91-97a6d33e3f4d/main termios_nonbsd.go
6600ed69-b5d7-4c4d-9a91-97a6d33e3f4d/main

Tree @6600ed69-b5d7-4c4d-9a91-97a6d33e3f4d/main (Download .tar.gz)

termios_nonbsd.go @6600ed69-b5d7-4c4d-9a91-97a6d33e3f4d/mainraw · history · blame

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

package term

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

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