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