endianness.h 259 B

1234567891011
  1. #ifndef _BITS_ENDIANNESS_H
  2. #define _BITS_ENDIANNESS_H 1
  3. #ifndef _BITS_ENDIAN_H
  4. # error "Never use <bits/endianness.h> directly; include <endian.h> instead."
  5. #endif
  6. /* m68k is big-endian. */
  7. #define __BYTE_ORDER __BIG_ENDIAN
  8. #endif /* bits/endianness.h */