12 lines
175 B
Go
12 lines
175 B
Go
|
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
|
||
|
|
||
|
package pty
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func open() (pty, tty *os.File, err error) {
|
||
|
return nil, nil, ErrUnsupported
|
||
|
}
|