The Android Open Source Project | a27d2ba | 2008-10-21 07:00:00 -0700 | [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> |