Skip to content

Commit 9cb830b

Browse files
ianlancetaylorgopherbot
authored andcommitted
unix: add missing import to syscall_hurd.go
CL 471119 added a reference to the unsafe package, but didn't add the import. Change-Id: Ibb8097df0444d8e83ba08e4ca2b5df98844fccf4 Reviewed-on: https://go-review.googlesource.com/c/sys/+/607976 Reviewed-by: Tobias Klauser <[email protected]> Auto-Submit: Ian Lance Taylor <[email protected]> Reviewed-by: Cherry Mui <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Commit-Queue: Ian Lance Taylor <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 71132f5 commit 9cb830b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

unix/syscall_hurd.go

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ package unix
1111
int ioctl(int, unsigned long int, uintptr_t);
1212
*/
1313
import "C"
14+
import "unsafe"
1415

1516
func ioctl(fd int, req uint, arg uintptr) (err error) {
1617
r0, er := C.ioctl(C.int(fd), C.ulong(req), C.uintptr_t(arg))

0 commit comments

Comments
 (0)