Codebase list golang-github-creack-pty / 1cabd139-f469-4198-970f-b462a4f18f71/upstream pty_unsupported.go
1cabd139-f469-4198-970f-b462a4f18f71/upstream

Tree @1cabd139-f469-4198-970f-b462a4f18f71/upstream (Download .tar.gz)

pty_unsupported.go @1cabd139-f469-4198-970f-b462a4f18f71/upstreamraw · 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
}