summaryrefslogtreecommitdiff
path: root/big.h
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2022-03-28 16:01:27 -0400
committerJakob Kaivo <jkk@ung.org>2022-03-28 16:01:27 -0400
commit69a209875107dce06174442d214c92f2fe748aae (patch)
tree1eb0fd486d3268e4354f4208eda0cc5ded89a5c8 /big.h
parent427349ba1556a2efb131ee05f4f3752e35d06957 (diff)
modify longdiv() and shortdiv() to return structs, eliminating another global, rename bigdiv() and bigmod() to big_divide() and big_remainder() to ensure no call sights are missed
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 d291512..50099dd 100644
--- a/big.h
+++ b/big.h
@@ -28,8 +28,8 @@ double bigtodbl(word);
double biglog(word);
double biglog10(word);
int bigcmp(word,word);
-word bigdiv(word,word);
-word bigmod(word,word);
+word big_divide(word, word);
+word big_remainder(word,word);
word bignegate(word);
word bigoscan(char *,char *);
word bigplus(word,word);