mirror of
https://github.com/miguelmota/cointop
synced 2024-11-14 18:12:57 +00: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
|
|
}
|