mirror of
https://github.com/creack/pty.git
synced 2026-03-31 18:47:10 +09:00
18 lines
248 B
Go
18 lines
248 B
Go
// +build ignore
|
|
|
|
package pty
|
|
|
|
/*
|
|
#define _KERNEL
|
|
#include <sys/conf.h>
|
|
#include <sys/param.h>
|
|
#include <sys/filio.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
_C_SPECNAMELEN = C.SPECNAMELEN /* max length of devicename */
|
|
)
|
|
|
|
type fiodgnameArg C.struct_fiodname_args
|