The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 1 | /* $OpenBSD: endian.h,v 1.3 2005/12/13 00:35:23 millert Exp $ */ |
2 | |||||
3 | #ifdef __ARMEB__ | ||||
4 | #define _BYTE_ORDER _BIG_ENDIAN | ||||
5 | #else | ||||
6 | #define _BYTE_ORDER _LITTLE_ENDIAN | ||||
7 | #endif | ||||
8 | #define __STRICT_ALIGNMENT | ||||
9 | #include <sys/types.h> | ||||
10 | #include <sys/endian.h> |