Codebase list golang-github-moby-term / 00d05b0d-8f70-40fe-8bd6-edf3b494f61a/main termios_nonbsd.go
00d05b0d-8f70-40fe-8bd6-edf3b494f61a/main

Tree @00d05b0d-8f70-40fe-8bd6-edf3b494f61a/main (Download .tar.gz)

termios_nonbsd.go @00d05b0d-8f70-40fe-8bd6-edf3b494f61a/mainraw · history · blame

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

package term

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

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