endianness.h 267 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. /* RISC-V is little-endian. */
  7. #define __BYTE_ORDER __LITTLE_ENDIAN
  8. #endif /* bits/endianness.h */