Codebase list golang-github-moby-term / e73523cb-cf14-4007-968a-00b117c34b5f/main termios_nonbsd.go
e73523cb-cf14-4007-968a-00b117c34b5f/main

Tree @e73523cb-cf14-4007-968a-00b117c34b5f/main (Download .tar.gz)

termios_nonbsd.go @e73523cb-cf14-4007-968a-00b117c34b5f/mainraw · history · blame

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

package term

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

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