Files
creack.pty/doc.go
2013-03-16 18:30:08 -07:00

12 lines
202 B
Go

// Package pty provides functions for working with Unix terminals.
package pty
import (
"os"
)
// Opens a pty and its corresponding tty.
func Open() (pty, tty *os.File, err error) {
return open()
}