From 774e2bbb0e363d29394239b9848a519bc68ac4e1 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Mon, 28 Mar 2022 16:31:47 -0400 Subject: rename bigtodbl() to big_tod() --- big.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'big.h') 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 */ -- cgit v1.2.1