Codebase list golang-github-creack-pty / 6f6669a8-ed8a-4fa4-b78b-3363bd1fa181/upstream ztypes_netbsd_32bit_int.go
6f6669a8-ed8a-4fa4-b78b-3363bd1fa181/upstream

Tree @6f6669a8-ed8a-4fa4-b78b-3363bd1fa181/upstream (Download .tar.gz)

ztypes_netbsd_32bit_int.go @6f6669a8-ed8a-4fa4-b78b-3363bd1fa181/upstreamraw · history · blame

//go:build (386 || amd64 || arm || arm64) && netbsd
//+build netbsd
//+build 386 amd64 arm arm64

package pty

type ptmget struct {
	Cfd int32
	Sfd int32
	Cn  [1024]int8
	Sn  [1024]int8
}

var (
	ioctl_TIOCPTSNAME = 0x48087448
	ioctl_TIOCGRANTPT = 0x20007447
)