Home | History | Annotate | Download | only in builtin
      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 "go generate"
      6 // to update builtin.go.  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.go
     16 func Offsetof(any) uintptr
     17 func Sizeof(any) uintptr
     18 func Alignof(any) uintptr
     19