File: pty_openbsd_386.go

package info (click to toggle)
golang-github-zyedidia-pty 1.1.1%2Bgit20180126.3036466-3~bpo10%2B1
  • links: PTS, VCS
  • area: main
  • in suites: buster-backports
  • size: 180 kB
  • sloc: sh: 14; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
package pty

import (
	"errors"
	"os"
)

func open() (pty, tty *os.File, err error) {
	return nil, nil, errors.New("Unsupported")
}