diff options
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 */ |