diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-14 23:25:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-14 23:25:32 +0000 |
commit | a0a752a4774b94e8671645b2ce78638e93a08ec5 (patch) | |
tree | b36e6d5bd9e328958438fb92e0bb34f716ddbe97 /target/utils/src | |
parent | 9737163928860d8f9c0371b71f385d0ec92b6906 (diff) | |
download | mtk-20170518-a0a752a4774b94e8671645b2ce78638e93a08ec5.zip mtk-20170518-a0a752a4774b94e8671645b2ce78638e93a08ec5.tar.gz mtk-20170518-a0a752a4774b94e8671645b2ce78638e93a08ec5.tar.bz2 |
cleanup
SVN-Revision: 5106
Diffstat (limited to 'target/utils/src')
-rw-r--r-- | target/utils/src/trx.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c index abc9bc9..787ffa8 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) |