Codebase list golang-github-creack-pty / v1.1.16 types_netbsd.go
v1.1.16

Tree @v1.1.16 (Download .tar.gz)

types_netbsd.go @v1.1.16raw · 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
)