mirror of
https://github.com/creack/pty.git
synced 2026-04-01 02:57:06 +09:00
* add openbsd/amd64 support * Remove extra C dependency and add time include Signed-off-by: Guillaume J. Charmes <gcharmes@magicleap.com>
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
|
|
}
|