summaryrefslogtreecommitdiff
path: root/big.h
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.h
parent600b548442dc0679f89b16ebb6225bdc4465db37 (diff)
rename bigtodbl() to big_tod()
Diffstat (limited to 'big.h')
-rw-r--r--big.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/big.h b/big.h
index 3a1ef69..6d494fa 100644
--- a/big.h
+++ b/big.h
@@ -24,7 +24,7 @@
long long big_toll(word);
word big_fromll(long long);
-double bigtodbl(word);
+double big_tod(word);
double biglog(word);
double biglog10(word);
int bigcmp(word,word);
@@ -46,7 +46,7 @@ word dbltobig(double);
int isnat(word);
word strtobig(word,int);
-#define force_dbl(x) ((tag[(x)] == INT) ? bigtodbl((x)) : get_dbl((x)))
+#define force_dbl(x) ((tag[(x)] == INT) ? big_tod((x)) : get_dbl((x)))
/* END OF DEFINITIONS FOR INTEGER PACKAGE */