diff options
author | Rob Landley <rob@landley.net> | 2006-03-25 03:01:59 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-25 03:01:59 +0000 |
commit | 90ece609e696cfbbf309f57d2a9ebbd2699711be (patch) | |
tree | 7ac47b060106fdc90e50f0cc4b8b0a35f7c89a3f | |
parent | 0bafd47e840bcf887df7d3a634748f3254b01408 (diff) |
Define both big endian and little endian macros.
-rw-r--r-- | include/platform.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/platform.h b/include/platform.h index f51274480..699de8f02 100644 --- a/include/platform.h +++ b/include/platform.h @@ -85,11 +85,14 @@ #endif #ifdef __BIG_ENDIAN__ - #define BB_BIG_ENDIAN 1 + #define BB_BIG_ENDIAN 1 + #define BB_LITTLE_ENDIAN 0 #elif __BYTE_ORDER == __BIG_ENDIAN - #define BB_BIG_ENDIAN 1 + #define BB_BIG_ENDIAN 1 + #define BB_LITTLE_ENDIAN 0 #else - #define BB_BIG_ENDIAN 0 + #define BB_BIG_ENDIAN 0 + #define BB_LITTLE_ENDIAN 1 #endif /* ---- Networking ------------------------------------------ */ |