mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
8 lines
156 B
Go
8 lines
156 B
Go
package termios
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func ioctl(fd, request, argp uintptr) error {
|
|
return unix.IoctlSetInt(int(fd), int(request), int(argp))
|
|
}
|