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