blob: e6b1d454fe8c09dbc62b124f49accc6e685793e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#if !defined (L_BIG_ENDIAN) && !defined (L_LITTLE_ENDIAN)
# if @APPLE_UNIVERSAL_BUILD@
# ifdef __BIG_ENDIAN__
# define L_BIG_ENDIAN
# else
# define L_LITTLE_ENDIAN
# endif
# else
# define @ENDIANNESS@
# endif
#endif
|