From fba0a90c7d18a2350d3a5f5da1d9b47c7763d557 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Mon, 28 Mar 2022 16:35:15 -0400 Subject: rename bignegate() to big_negate() --- reduce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reduce.c') 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; -- cgit v1.2.1