Codebase list golang-github-creack-pty / bullseye-backports/main pty_unsupported.go
bullseye-backports/main

Tree @bullseye-backports/main (Download .tar.gz)

pty_unsupported.go @bullseye-backports/mainraw · history · blame

//go:build !linux && !darwin && !freebsd && !dragonfly && !netbsd && !openbsd && !solaris
//+build !linux,!darwin,!freebsd,!dragonfly,!netbsd,!openbsd,!solaris

package pty

import (
	"os"
)

func open() (pty, tty *os.File, err error) {
	return nil, nil, ErrUnsupported
}