tty_other.go

 1//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !aix && !zos && !windows
 2// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!aix,!zos,!windows
 3
 4package uv
 5
 6import "os"
 7
 8func openTTY() (*os.File, *os.File, error) {
 9	return nil, nil, ErrPlatformNotSupported
10}
11
12func suspend() error {
13	return ErrPlatformNotSupported
14}