1 /* $OpenBSD: endian.h,v 1.5 2011/03/23 16:54:34 pirofti Exp $ */ 2 3 #ifndef _ARM_ENDIAN_H_ 4 #define _ARM_ENDIAN_H_ 5 6 #ifdef __ARMEB__ 7 #define _BYTE_ORDER _BIG_ENDIAN 8 #else 9 #define _BYTE_ORDER _LITTLE_ENDIAN 10 #endif 11 #define __STRICT_ALIGNMENT 12 #include <sys/endian.h> 13 14 #endif /* _ARM_ENDIAN_H_ */ 15