Codebase list golang-github-moby-term / 6fc234c5-f864-4f2f-8e83-8eb3224fb406/main termios_nonbsd.go
6fc234c5-f864-4f2f-8e83-8eb3224fb406/main

Tree @6fc234c5-f864-4f2f-8e83-8eb3224fb406/main (Download .tar.gz)

termios_nonbsd.go @6fc234c5-f864-4f2f-8e83-8eb3224fb406/mainraw · history · blame

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

package term

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

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