ptr_32_be.go 252 B

123456789101112131415
  1. //go:build armbe || mips || mips64p32
  2. // +build armbe mips mips64p32
  3. package sys
  4. import (
  5. "unsafe"
  6. )
  7. // Pointer wraps an unsafe.Pointer to be 64bit to
  8. // conform to the syscall specification.
  9. type Pointer struct {
  10. pad uint32
  11. ptr unsafe.Pointer
  12. }