diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-02-26 15:50:31 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-02-26 15:50:31 +0000 |
commit | f4e8ecd36e87b4c4eddf0399344453aa30980341 (patch) | |
tree | 8698d8bb9711a240bb3ea793dee1ab6309a3202e | |
parent | 78806a8aa9ff4ea2dc7e768dd7862e91d3547967 (diff) | |
download | mtk-20170518-f4e8ecd36e87b4c4eddf0399344453aa30980341.zip mtk-20170518-f4e8ecd36e87b4c4eddf0399344453aa30980341.tar.gz mtk-20170518-f4e8ecd36e87b4c4eddf0399344453aa30980341.tar.bz2 |
Endianess and os-specific fixes
SVN-Revision: 3276
-rw-r--r-- | openwrt/target/utils/src/trx.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/openwrt/target/utils/src/trx.c b/openwrt/target/utils/src/trx.c index 6f9fa41..a7a2a54 100644 --- 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) |