diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:31:47 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:31:47 -0400 |
commit | 774e2bbb0e363d29394239b9848a519bc68ac4e1 (patch) | |
tree | 02f418635aaf32e23c36210cd229850a5eeeb98c /big.h | |
parent | 600b548442dc0679f89b16ebb6225bdc4465db37 (diff) |
rename bigtodbl() to big_tod()
Diffstat (limited to 'big.h')
-rw-r--r-- | big.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |