mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
314 B
16 lines
314 B
|
14 years ago
|
#ifdef __BIG_ENDIAN__
|
||
|
|
#if __BIG_ENDIAN__
|
||
|
|
#define __BYTE_ORDER __BIG_ENDIAN
|
||
|
|
#endif
|
||
|
|
#endif /* __BIG_ENDIAN__ */
|
||
|
|
|
||
|
|
#ifdef __LITTLE_ENDIAN__
|
||
|
|
#if __LITTLE_ENDIAN__
|
||
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
||
|
|
#endif
|
||
|
|
#endif /* __LITTLE_ENDIAN__ */
|
||
|
|
|
||
|
|
#ifndef __BYTE_ORDER
|
||
|
|
#define __BYTE_ORDER __BIG_ENDIAN
|
||
|
|
#endif
|