diff options
author | 2024-09-09 08:24:38 +0000 | |
---|---|---|
committer | 2024-09-09 08:24:38 +0000 | |
commit | 7785fa54da27a15e5463ba5eae90f3f8561ef06a (patch) | |
tree | 47503b3190de0feaf1609f0d27b762a9f6954c75 /vendor/golang.org/x/sys/unix/syscall_hurd.go | |
parent | [chore]: Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 (#3284) (diff) | |
download | gotosocial-7785fa54da27a15e5463ba5eae90f3f8561ef06a.tar.xz |
[chore]: Bump golang.org/x/crypto from 0.26.0 to 0.27.0 (#3283)
Diffstat (limited to 'vendor/golang.org/x/sys/unix/syscall_hurd.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/syscall_hurd.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/golang.org/x/sys/unix/syscall_hurd.go b/vendor/golang.org/x/sys/unix/syscall_hurd.go index ba46651f8..a6a2d2fc2 100644 --- a/vendor/golang.org/x/sys/unix/syscall_hurd.go +++ b/vendor/golang.org/x/sys/unix/syscall_hurd.go @@ -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)) |