From 5fe61d222434c0fca6e40fb91d9cbc0d18a68898 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 26 Feb 2006 15:50:31 +0000 Subject: Endianess and os-specific fixes git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3276 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/target/utils/src/trx.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'openwrt/target/utils/src/trx.c') diff --git a/openwrt/target/utils/src/trx.c b/openwrt/target/utils/src/trx.c index 6f9fa4168..a7a2a5454 100644 --- a/openwrt/target/utils/src/trx.c +++ b/openwrt/target/utils/src/trx.c @@ -44,8 +44,18 @@ #include #include #include +#if defined(__APPLE__) +#include +#include +#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 #include +#endif #if __BYTE_ORDER == __BIG_ENDIAN #define STORE32_LE(X) bswap_32(X) -- cgit v1.2.3