aboutsummaryrefslogtreecommitdiff
path: root/bignum.h
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2021-03-25 15:14:25 -0400
committerB. Watson <yalhcru@gmail.com>2021-03-25 15:14:25 -0400
commit47ce755193d18704ffaf9dc3e5953dd6966f1db1 (patch)
tree9fe93ec785dd26062459563c008db5db4194a1d9 /bignum.h
parentea2d5014ade974ca99678d3aac36ebd4c8e4d8c6 (diff)
downloadtaipan-47ce755193d18704ffaf9dc3e5953dd6966f1db1.tar.gz
Save 27 bytes
Diffstat (limited to 'bignum.h')
-rw-r--r--bignum.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/bignum.h b/bignum.h
index 06fbd8b..4eed63e 100644
--- a/bignum.h
+++ b/bignum.h
@@ -89,7 +89,9 @@ extern char __cdecl__ big_mul(bignump dest, bignump multiplicand, bignump multip
extern char __cdecl__ big_div(bignump dest, bignump dividend, bignump divisor);
/* negation: b = -b, or b *= -1 */
+#if BIGNUM != BIGFLOAT
extern void __fastcall__ big_negate(bignump b);
+#endif
/* returns true if the bank is maxed out. We do this by checking the exponent
byte, so the "max" is tied to the bignum implementation, which is why its