host_endian.h 108 B

123456
  1. /* include proper endian.h */
  2. #ifdef __APPLE__
  3. #include <machine/endian.h>
  4. #else
  5. #include <endian.h>
  6. #endif