diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:32:49 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:32:49 -0400 |
commit | 94b677a1178c2c36518dc8d84ce918965220be3c (patch) | |
tree | 0d8ad6840d1f717448b70e7fb6e4a43fb9427cdb | |
parent | 774e2bbb0e363d29394239b9848a519bc68ac4e1 (diff) |
rename biglog10() to big_log10()
-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)); |