X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/7515da25de01efebda0b3d3959a90a635559c3ca..1e8489f978be9836180f77ae2ec566fb0eca4004:/target/utils/src/trx.c diff --git a/target/utils/src/trx.c b/target/utils/src/trx.c index a7a2a5454..787ffa894 100644 --- a/target/utils/src/trx.c +++ b/target/utils/src/trx.c @@ -44,18 +44,6 @@ #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) @@ -89,7 +77,7 @@ void usage(void) __attribute__ (( __noreturn__ )); void usage(void) { - fprintf(stderr, "Usage: trx [-o outfile] [-m maxlen] [-a align] [-b offset] file [file [file]]\n"); + fprintf(stderr, "Usage: trx [-o outfile] [-m maxlen] [-a align] [-b offset] [-f file] [-f file [-f file]]\n"); exit(EXIT_FAILURE); } @@ -122,8 +110,9 @@ int main(int argc, char **argv) in = NULL; i = 0; - while ((c = getopt(argc, argv, "-:o:m:a:b:")) != -1) { + while ((c = getopt(argc, argv, "-:o:m:a:b:f:")) != -1) { switch (c) { + case 'f': case 1: p->offsets[i++] = STORE32_LE(cur_len);