mirror of
https://github.com/containers/podman.git
synced 2025-12-01 02:27:13 +08:00
Also includes unreleased https://github.com/openshift/imagebuilder/pull/246 to work with the updated docker/docker dependency. And updates some references to newly deprecated docker/docker symbols. [NO NEW TESTS NEEDED] Signed-off-by: Miloslav Trmač <mitr@redhat.com>
14 lines
208 B
Go
14 lines
208 B
Go
//go:build darwin || freebsd || openbsd || netbsd
|
|
// +build darwin freebsd openbsd netbsd
|
|
|
|
package term
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
getTermios = unix.TIOCGETA
|
|
setTermios = unix.TIOCSETA
|
|
)
|