File: ioctl_other.go

package info (click to toggle)
golang-github-zyedidia-terminal 0.0~git20230315.4b3bcf6-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 148 kB
  • sloc: makefile: 3
file content (15 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +build plan9 nacl windows

package terminal

import (
	"os"
)

func ioctl(f *os.File, cmd, p uintptr) error {
	return nil
}

func (t *VT) ptyResize() error {
	return nil
}