X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6f8e2d05715c92c0c5127ca8ea017f0a3295d377..42af40f92a6e158b0ec2ae9681a0a8a5c9ab5b3e:/target/utils/src/trx.c?ds=inline

diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c
index abc9bc93c..787ffa894 100644
--- a/target/utils/src/trx.c
+++ b/target/utils/src/trx.c
@@ -44,18 +44,6 @@
 #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)