Codebase list golang-github-creack-pty / upstream/1.1.9 pty_unsupported.go
upstream/1.1.9

Tree @upstream/1.1.9 (Download .tar.gz)

pty_unsupported.go @upstream/1.1.9raw · history · blame

// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris

package pty

import (
	"os"
)

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