From f0f91207e431dcc770f31349d5e149ce595c578c Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 26 Sep 2011 21:49:08 +0000 Subject: [PATCH] Fix sysinfo.go on systems which don't need to import "unsafe". From-SVN: r179216 --- libgo/mksysinfo.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/libgo/mksysinfo.sh b/libgo/mksysinfo.sh index 2bc35e5b8832..2b5acd6051f1 100755 --- a/libgo/mksysinfo.sh +++ b/libgo/mksysinfo.sh @@ -96,6 +96,7 @@ ${CC} -fdump-go-spec=gen-sysinfo.go -std=gnu99 -S -o sysinfo.s sysinfo.c echo 'package syscall' > ${OUT} echo 'import "unsafe"' >> ${OUT} +echo 'type _ unsafe.Pointer' >> ${OUT} # Get all the consts and types, skipping ones which could not be # represented in Go and ones which we need to rewrite. We also skip -- 2.47.3