mirror of
https://github.com/yudai/gotty.git
synced 2025-12-25 19:58:50 +01:00
11 lines
174 B
Go
11 lines
174 B
Go
package pty
|
|
|
|
import "syscall"
|
|
|
|
func ioctl(fd, cmd, ptr uintptr) error {
|
|
_, _, e := syscall.Syscall(syscall.SYS_IOCTL, fd, cmd, ptr)
|
|
if e != 0 {
|
|
return e
|
|
}
|
|
return nil
|
|
}
|