diff options
Diffstat (limited to 'big.c')
-rw-r--r-- | big.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -417,7 +417,7 @@ long long big_toll(word x) return (sign ? -n : n); } -word bignegate(word x) +word big_negate(word x) { if (bigzero(x)) { return x; @@ -518,7 +518,7 @@ word bigtimes(word x, word y) y = rest(y); } - return (s != big_is_negative(x) ? bignegate(r) : r); + return (s != big_is_negative(x) ? big_negate(r) : r); } /* may assume y~=0 */ @@ -586,7 +586,7 @@ word big_remainder(word x, word y) } } - return (s1 ? bignegate(bd.rem) : bd.rem); + return (s1 ? big_negate(bd.rem) : bd.rem); } /* NB - above have entier based handling of signed cases (as Miranda) in |