summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/sys/unix/syscall_hurd.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-09-09 08:24:38 +0000
committerLibravatar GitHub <noreply@github.com>2024-09-09 08:24:38 +0000
commit7785fa54da27a15e5463ba5eae90f3f8561ef06a (patch)
tree47503b3190de0feaf1609f0d27b762a9f6954c75 /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)
downloadgotosocial-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.go1
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))