mirror of
https://github.com/creack/pty.git
synced 2026-04-01 02:57:06 +09:00
13 lines
272 B
Go
13 lines
272 B
Go
//go:build !linux && !darwin && !freebsd && !dragonfly && !netbsd && !openbsd && !solaris
|
|
//+build !linux,!darwin,!freebsd,!dragonfly,!netbsd,!openbsd,!solaris
|
|
|
|
package pty
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func open() (pty, tty *os.File, err error) {
|
|
return nil, nil, ErrUnsupported
|
|
}
|