diff options
Diffstat (limited to 'src/cmd/gc/unsafe.go')
-rw-r--r-- | src/cmd/gc/unsafe.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/cmd/gc/unsafe.go b/src/cmd/gc/unsafe.go index db27d7425..c3c627815 100644 --- a/src/cmd/gc/unsafe.go +++ b/src/cmd/gc/unsafe.go @@ -6,6 +6,8 @@ // to update builtin.c.boot. This is not done automatically // to avoid depending on having a working compiler binary. +// +build ignore + package PACKAGE type Pointer uintptr // not really; filled in by compiler @@ -14,9 +16,3 @@ type Pointer uintptr // not really; filled in by compiler func Offsetof(any) uintptr func Sizeof(any) uintptr func Alignof(any) uintptr - -func Typeof(i interface{}) (typ interface{}) -func Reflect(i interface{}) (typ interface{}, addr Pointer) -func Unreflect(typ interface{}, addr Pointer) (ret interface{}) -func New(typ interface{}) Pointer -func NewArray(typ interface{}, n int) Pointer |