mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-07 01:15:44 +00:00
12 lines
166 B
Go
12 lines
166 B
Go
//+build !darwin,!freebsd,!netbsd,!openbsd,!windows
|
|
|
|
package term
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
getTermios = unix.TCGETS
|
|
setTermios = unix.TCSETS
|
|
)
|