mirror of
https://github.com/creack/pty.git
synced 2026-04-01 02:57:06 +09:00
* add openbsd/amd64 support * Remove extra C dependency and add time include Signed-off-by: Guillaume J. Charmes <gcharmes@magicleap.com>
15 lines
169 B
Go
15 lines
169 B
Go
// +build ignore
|
|
|
|
package pty
|
|
|
|
/*
|
|
#include <sys/time.h>
|
|
#include <stdlib.h>
|
|
#include <sys/tty.h>
|
|
*/
|
|
import "C"
|
|
|
|
type ptmget C.struct_ptmget
|
|
|
|
var ioctl_PTMGET = C.PTMGET
|