mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
also includes bumps for c/storage and c/image Signed-off-by: Paul Holzinger <pholzing@redhat.com>
14 lines
245 B
Go
14 lines
245 B
Go
//go:build !linux && !(freebsd && cgo)
|
|
// +build !linux
|
|
// +build !freebsd !cgo
|
|
|
|
package chroot
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func getPtyDescriptors() (int, int, error) {
|
|
return -1, -1, errors.New("getPtyDescriptors not supported on this platform")
|
|
}
|