Codebase list golang-github-moby-term / debian/latest termios_nonbsd.go
debian/latest

Tree @debian/latest (Download .tar.gz)

termios_nonbsd.go @debian/latestraw · history · blame

//go:build !darwin && !freebsd && !netbsd && !openbsd && !windows
// +build !darwin,!freebsd,!netbsd,!openbsd,!windows

package term

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

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