Codebase list golang-github-creack-pty / upstream/1.1.13 types_netbsd.go
upstream/1.1.13

Tree @upstream/1.1.13 (Download .tar.gz)

types_netbsd.go @upstream/1.1.13raw · 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
)