mirror of
https://github.com/containers/podman.git
synced 2025-12-02 11:08:36 +08:00
12 lines
204 B
Go
12 lines
204 B
Go
//go:build !linux && !(freebsd && cgo)
|
|
|
|
package chroot
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func getPtyDescriptors() (int, int, error) {
|
|
return -1, -1, errors.New("getPtyDescriptors not supported on this platform")
|
|
}
|