blob: ceb425b19c982cdce5aac24de8e9cde46bd773cf [file] [log] [blame]
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
package pty
import (
"os"
)
func open() (pty, tty *os.File, err error) {
return nil, nil, ErrUnsupported
}