mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
12 lines
166 B
Go
12 lines
166 B
Go
|
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd
|
||
|
|
||
|
package pty
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func open() (pty, tty *os.File, err error) {
|
||
|
return nil, nil, ErrUnsupported
|
||
|
}
|