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
17 lines
228 B
Go
17 lines
228 B
Go
//go:build ignore
|
|
// +build ignore
|
|
|
|
package pty
|
|
|
|
/*
|
|
#include <sys/param.h>
|
|
#include <sys/filio.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
_C_SPECNAMELEN = C.SPECNAMELEN /* max length of devicename */
|
|
)
|
|
|
|
type fiodgnameArg C.struct_fiodgname_arg
|