summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arith.c b/arith.c
index 69cd2962..33942c35 100644
--- a/arith.c
+++ b/arith.c
@@ -2369,3 +2369,10 @@ void arith_init(void)
reg_varl(intern(lit("*e*"), user_package), flo(M_E));
reg_varl(intern(lit("%e%"), user_package), flo(M_E));
}
+
+void arith_free_all(void)
+{
+ mp_clear(&NUM_MAX_MP);
+ mp_clear(&INT_PTR_MAX_MP);
+ mp_clear(&UINT_PTR_MAX_MP);
+}