Codebase list golang-pty / upstream/0.0_git20141217.141937.1.05017fc pty_unsupported.go
upstream/0.0_git20141217.141937.1.05017fc

Tree @upstream/0.0_git20141217.141937.1.05017fc (Download .tar.gz)

pty_unsupported.go @upstream/0.0_git20141217.141937.1.05017fcraw · history · blame

// +build !linux,!darwin,!freebsd

package pty

import (
	"os"
)

func open() (pty, tty *os.File, err error) {
	return nil, nil, ErrUnsupported
}