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