summaryrefslogtreecommitdiff
path: root/reduce.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2022-03-28 16:35:15 -0400
committerJakob Kaivo <jkk@ung.org>2022-03-28 16:35:15 -0400
commitfba0a90c7d18a2350d3a5f5da1d9b47c7763d557 (patch)
tree5f022d17e0850083df603660d854803185366be6 /reduce.c
parent8d2224f1227e8da595ff4db29d805908a91609bf (diff)
rename bignegate() to big_negate()
Diffstat (limited to 'reduce.c')
-rw-r--r--reduce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reduce.c b/reduce.c
index 5a7208d..a75f0a4 100644
--- a/reduce.c
+++ b/reduce.c
@@ -1856,7 +1856,7 @@ L3: if(arg1==NIL)lexfail(lastarg);
case READY(NEG): /* NEG x => -x, if x is a number */
UPLEFT;
- if(tag[lastarg]==INT)simpl(bignegate(lastarg));
+ if(tag[lastarg]==INT)simpl(big_negate(lastarg));
else setdbl(e,-get_dbl(lastarg));
goto DONE;