blob: dba50c042a2b8ef15bd1f957a676835e802aff26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package salticidae
// #cgo CFLAGS: -I${SRCDIR}/salticidae/include/
// #cgo LDFLAGS: ${SRCDIR}/salticidae/libsalticidae.so -Wl,-rpath=${SRCDIR}/salticidae/
import "C"
import "unsafe"
type rawptr_t = unsafe.Pointer
type Opcode = uint8
|