--- num2integral.i.c.~1.20.~ 2003-05-24 09:22:52.000000000 +1000 +++ num2integral.i.c 2004-02-14 13:23:30.000000000 +1000 @@ -204,15 +204,11 @@ #endif mpz_import (SCM_I_BIG_MPZ (result), - 1, -#ifdef WORDS_BIGENDIAN - 1, -#else - -1, -#endif - SIZEOF_ITYPE, - 0, - 0, + 1, /* one word */ + 1, /* word order irrelevant when just one word */ + SIZEOF_ITYPE, /* word size */ + 0, /* native endianness within word */ + 0, /* no nails */ &n); /* mpz_import doesn't handle sign */