From 5e3239b785ecd81cf9451d4da420dca916a00ad4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Mon, 28 Mar 2022 16:36:48 -0400 Subject: rename bigpow() to big_pow() --- reduce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reduce.c') diff --git a/reduce.c b/reduce.c index b5e7284..6b88409 100644 --- a/reduce.c +++ b/reduce.c @@ -2116,7 +2116,7 @@ L3: if(arg1==NIL)lexfail(lastarg); fa=get_dbl(arg1),fb=big_tod(lastarg); else if(big_is_negative(lastarg)) fa=big_tod(arg1),fb=big_tod(lastarg); - else { simpl(bigpow(arg1,lastarg)); + else { simpl(big_pow(arg1,lastarg)); goto DONE; } errno=0; /* to clear */ setdbl(e,pow(fa,fb)); -- cgit v1.2.1