X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhmisc.c;h=86b8ad804f52212f070e261bf123d14ba6183246;hb=e2d655de74122bcca8f09f3ae5b38892768c711b;hp=e8a30aceb1a5cdcfb2c051cc5413ef6cbc342fa3;hpb=df6971a59e8d01dcfe605bbac949b7d4b3ab0a92;p=mmh diff --git a/uip/mhmisc.c b/uip/mhmisc.c index e8a30ac..86b8ad8 100644 --- a/uip/mhmisc.c +++ b/uip/mhmisc.c @@ -23,7 +23,6 @@ int ntype = 0; char *parts[NPARTS + 1]; char *types[NTYPES + 1]; -int endian = 0; /* little or big endian */ int userrs = 0; static char *errs = NULL; @@ -77,22 +76,6 @@ type_ok (CT ct, int sP) } -void -set_endian (void) -{ - union { - long l; - char c[sizeof(long)]; - } un; - - un.l = 1; - endian = un.c[0] ? -1 : 1; - if (debugsw) - fprintf (stderr, "%s endian architecture\n", - endian > 0 ? "big" : "little"); -} - - int make_intermediates (char *file) {