mirror of
https://github.com/containers/podman.git
synced 2025-11-29 17:48:05 +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
233 B
Go
14 lines
233 B
Go
//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
|
|
)
|