1 package abi
2 3 // These two signatures are present to satisfy the expectation of some programs
4 // (in particular internal/syscall/unix on MacOS). They do not currently have an
5 // implementation, in part because Moxie doesn't use ABI0 or ABIInternal (it
6 // uses a C-like calling convention).
7 // Calls to FuncPCABI0 however are treated specially by the compiler when
8 // compiling for MacOS.
9 10 func FuncPCABI0(f interface{}) uintptr
11 12 func FuncPCABIInternal(f interface{}) uintptr
13