X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Futils%2Fsrc%2Ftrx.c;h=a7a2a54540328d2efa64a5ef0ef83fa64c645657;hb=7515da25de01efebda0b3d3959a90a635559c3ca;hp=6f9fa4168752e9d60e8c730b93996b9a9d125709;hpb=a63d141144999cf1cb4e3b4e28c10ec86a2f17c0;p=openwrt-working-2016%2F.git diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c index 6f9fa41687..a7a2a54540 100644 --- a/target/utils/src/trx.c +++ b/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)