projects
/
openwrt
/
staging
/
adrian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78806a8
)
Endianess and os-specific fixes
author
Florian Fainelli
<florian@openwrt.org>
Sun, 26 Feb 2006 15:50:31 +0000
(15:50 +0000)
committer
Florian Fainelli
<florian@openwrt.org>
Sun, 26 Feb 2006 15:50:31 +0000
(15:50 +0000)
SVN-Revision: 3276
openwrt/target/utils/src/trx.c
patch
|
blob
|
history
diff --git
a/openwrt/target/utils/src/trx.c
b/openwrt/target/utils/src/trx.c
index 6f9fa4168752e9d60e8c730b93996b9a9d125709..a7a2a54540328d2efa64a5ef0ef83fa64c645657 100644
(file)
--- a/
openwrt/target/utils/src/trx.c
+++ b/
openwrt/target/utils/src/trx.c
@@
-44,8
+44,18
@@
#include <string.h>
#include <errno.h>
#include <unistd.h>
+#if defined(__APPLE__)
+#include <machine/endian.h>
+#include <machine/byte_order.h>
+#define __BYTE_ORDER BYTE_ORDER
+#define __BIG_ENDIAN BIG_ENDIAN
+#define bswap_16(x) NXSwapShort(x)
+#define bswap_32(x) NXSwapInt(x)
+#define bswap_64(x) NXSwapLongLong(x)
+#else
#include <endian.h>
#include <byteswap.h>
+#endif
#if __BYTE_ORDER == __BIG_ENDIAN
#define STORE32_LE(X) bswap_32(X)