X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/512075ca1c13fecfba95b96500f0dcd8af222533..1fbef95525ace333d4cef5e217d2293cdc891eaf:/target/utils/src/trx.c diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c index 6f9fa4168..a7a2a5454 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)