1997-11-26 04:14:44 +00:00
|
|
|
#ifndef _ENDIAN_H
|
|
|
|
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
|
|
|
#endif
|
|
|
|
|
2005-06-13 10:11:47 +00:00
|
|
|
/* ARM can be either big or little endian. */
|
1999-04-12 09:04:34 +00:00
|
|
|
#ifdef __ARMEB__
|
|
|
|
#define __BYTE_ORDER __BIG_ENDIAN
|
|
|
|
#else
|
1997-06-21 02:26:04 +00:00
|
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
1999-04-12 09:04:34 +00:00
|
|
|
#endif
|