Sign in
fuchsia
/
third_party
/
github.com
/
creack
/
pty
/
db8e3cd836b82e82e0a9c8edc6896967dd31374f
/
.
/
pty_unsupported.go
blob: 9a3e721bc42b0d15eb93aa70eb5575c0f39e2f48 [
file
] [
log
] [
blame
]
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd
package pty
import (
"os"
)
func open() (pty, tty *os.File, err error) {
return nil, nil, ErrUnsupported
}