mirror of
https://github.com/miguelmota/cointop
synced 2024-11-14 18:12:57 +00:00
20 lines
311 B
Go
20 lines
311 B
Go
//go:build !windows && !solaris
|
|
//+build !windows,!solaris
|
|
|
|
package pty
|
|
|
|
import "syscall"
|
|
|
|
const (
|
|
TIOCGWINSZ = syscall.TIOCGWINSZ
|
|
TIOCSWINSZ = syscall.TIOCSWINSZ
|
|
)
|
|
|
|
func ioctl(fd, cmd, ptr uintptr) error {
|
|
_, _, e := syscall.Syscall(syscall.SYS_IOCTL, fd, cmd, ptr)
|
|
if e != 0 {
|
|
return e
|
|
}
|
|
return nil
|
|
}
|