blob: a2ab07249aaeb2ba7c847cbef8be5caac5c74024 (
plain)
1
2
3
4
5
6
7
8
|
/* Sparc is big-endian, but v9 supports endian conversion on loads/stores
and GCC supports such a mode. Be prepared. */
#ifdef __LITTLE_ENDIAN__
#define __BYTE_ORDER __LITTLE_ENDIAN
#else
#define __BYTE_ORDER __BIG_ENDIAN
#endif
|