diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:01:27 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-03-28 16:01:27 -0400 |
commit | 69a209875107dce06174442d214c92f2fe748aae (patch) | |
tree | 1eb0fd486d3268e4354f4208eda0cc5ded89a5c8 /big.h | |
parent | 427349ba1556a2efb131ee05f4f3752e35d06957 (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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |