github.com/bgentry/go@v0.0.0-20150121062915-6cf5a733d54d/src/cmd/gc/unsafe.go (about) 1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // NOTE: If you change this file you must run "./mkbuiltin" 6 // to update builtin.c.boot. This is not done automatically 7 // to avoid depending on having a working compiler binary. 8 9 // +build ignore 10 11 package PACKAGE 12 13 type Pointer uintptr // not really; filled in by compiler 14 15 // return types here are ignored; see unsafe.c 16 func Offsetof(any) uintptr 17 func Sizeof(any) uintptr 18 func Alignof(any) uintptr