blob: 491c060b28601e4c6eb0a5806dd2a857117bac98 [file] [log] [blame]
// 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()
}