diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:33:35 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:33:35 -0400 |
commit | e1d7c2294075f5a59e276bb2dd7af79772443234 (patch) | |
tree | 784fd0af06a50189c1a069850958108a732051cb | |
parent | 94b677a1178c2c36518dc8d84ce918965220be3c (diff) |
rename biglog() to big_log()
-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
@@ -709,7 +709,7 @@ static double big__log(word x, double logbase, char *name, double (*fn)(double)) } /* logarithm of big x */ -double biglog(word x) +double big_log(word x) { static double logIBASE = 0.0; if (logIBASE == 0.0) { @@ -25,7 +25,7 @@ long long big_toll(word); word big_fromll(long long); double big_tod(word); -double biglog(word); +double big_log(word); double big_log10(word); int bigcmp(word,word); word big_divide(word, word); @@ -1938,7 +1938,7 @@ L3: if(arg1==NIL)lexfail(lastarg); case READY(LOG_FN): /* log */ UPLEFT; - if(tag[lastarg]==INT)setdbl(e,biglog(lastarg)); + if(tag[lastarg]==INT)setdbl(e,big_log(lastarg)); else { errno=0; /* to clear */ fa=force_dbl(lastarg); setdbl(e,log(fa)); |