mirror of
https://github.com/creack/pty.git
synced 2026-04-01 02:57:06 +09:00
* Add GHA workflow to run test_crosscompile and go test * crosscompile job doesn't need setup-go * Test more go versions * Test 1.6 * Remove 1.13 and add comment of testing strategy
19 lines
237 B
Go
19 lines
237 B
Go
//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
|
|
)
|