2008-12-08 20:46:39 -07:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2010-01-22 17:58:33 -07:00
|
|
|
// NOTE: If you change this file you must run "./mkbuiltin"
|
|
|
|
// to update builtin.c.boot. This is not done automatically
|
|
|
|
// to avoid depending on having a working compiler binary.
|
|
|
|
|
2011-12-20 14:42:44 -07:00
|
|
|
// +build ignore
|
|
|
|
|
2008-12-08 20:46:39 -07:00
|
|
|
package PACKAGE
|
|
|
|
|
2011-03-07 13:10:01 -07:00
|
|
|
type Pointer uintptr // not really; filled in by compiler
|
2009-10-06 15:55:39 -06:00
|
|
|
|
2011-06-17 14:12:14 -06:00
|
|
|
// return types here are ignored; see unsafe.c
|
|
|
|
func Offsetof(any) uintptr
|
|
|
|
func Sizeof(any) uintptr
|
|
|
|
func Alignof(any) uintptr
|