diff options
-rw-r--r-- | big.c | 2 | ||||
-rw-r--r-- | big.h | 2 | ||||
-rw-r--r-- | reduce.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -720,7 +720,7 @@ double biglog(word x) } /* logarithm of big x */ -double biglog10(word x) +double big_log10(word x) { static double log10IBASE = 0.0; if (log10IBASE == 0.0) { @@ -26,7 +26,7 @@ long long big_toll(word); word big_fromll(long long); double big_tod(word); double biglog(word); -double biglog10(word); +double big_log10(word); int bigcmp(word,word); word big_divide(word, word); word big_remainder(word,word); @@ -1947,7 +1947,7 @@ L3: if(arg1==NIL)lexfail(lastarg); case READY(LOG10_FN): /* log10 */ UPLEFT; - if(tag[lastarg]==INT)setdbl(e,biglog10(lastarg)); + if(tag[lastarg]==INT)setdbl(e,big_log10(lastarg)); else { errno=0; /* to clear */ fa=force_dbl(lastarg); setdbl(e,log10(fa)); |