update to latest dependencies

This commit is contained in:
Mechiel Lukkien
2024-10-04 09:44:59 +02:00
parent 9a4fa8633f
commit 98d0ff22bb
48 changed files with 6775 additions and 1091 deletions

View File

@ -11,6 +11,7 @@ package unix
int ioctl(int, unsigned long int, uintptr_t);
*/
import "C"
import "unsafe"
func ioctl(fd int, req uint, arg uintptr) (err error) {
r0, er := C.ioctl(C.int(fd), C.ulong(req), C.uintptr_t(arg))