zig/libc/musl/arch/mips64/bits/endian.h
2019-03-12 13:18:52 -04:00

6 lines
122 B
C

#if _MIPSEL || __MIPSEL || __MIPSEL__
#define __BYTE_ORDER __LITTLE_ENDIAN
#else
#define __BYTE_ORDER __BIG_ENDIAN
#endif