summaryrefslogtreecommitdiff
path: root/big.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2022-03-28 16:31:47 -0400
committerJakob Kaivo <jkk@ung.org>2022-03-28 16:31:47 -0400
commit774e2bbb0e363d29394239b9848a519bc68ac4e1 (patch)
tree02f418635aaf32e23c36210cd229850a5eeeb98c /big.c
parent600b548442dc0679f89b16ebb6225bdc4465db37 (diff)
rename bigtodbl() to big_tod()
Diffstat (limited to 'big.c')
-rw-r--r--big.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/big.c b/big.c
index 17fdebc..9ac3b5d 100644
--- a/big.c
+++ b/big.c
@@ -633,7 +633,7 @@ word bigpow(word x, word y)
return r;
}
-double bigtodbl(word x)
+double big_tod(word x)
{
word s = big_is_negative(x);
double b = 1.0;