Codebase list golang-github-creack-pty / 37bf74bc-5c86-4dce-98e5-0b757f62463f/upstream types_netbsd.go
37bf74bc-5c86-4dce-98e5-0b757f62463f/upstream

Tree @37bf74bc-5c86-4dce-98e5-0b757f62463f/upstream (Download .tar.gz)

types_netbsd.go @37bf74bc-5c86-4dce-98e5-0b757f62463f/upstreamraw · history · blame

//go:build ignore
//+build ignore

package pty

/*
#include <sys/time.h>
#include <stdlib.h>
#include <sys/tty.h>
*/
import "C"

type ptmget C.struct_ptmget

var (
	ioctl_TIOCPTSNAME = C.TIOCPTSNAME
	ioctl_TIOCGRANTPT = C.TIOCGRANTPT
)