blob: 88b7b21563899dc7384f4c9f7b13167c0f7545a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//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
)
|