summaryrefslogtreecommitdiffstats
path: root/chroot/pty_unsupported.go
blob: 55ea597e3ee711b013837906dc978f528aa858b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//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")
}