mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 03:35:06 +00:00
6 lines
102 B
C
6 lines
102 B
C
|
#if __AARCH64EB__
|
||
|
#define __BYTE_ORDER __BIG_ENDIAN
|
||
|
#else
|
||
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
||
|
#endif
|