From 673a0c212fbae41585eb5723fdf24667695e989e Mon Sep 17 00:00:00 2001 From: jjgarcia Date: Mon, 18 Nov 2002 12:54:07 +0000 Subject: [PATCH] Make cl_dealloc do nothing, since the bignum libraries tries to deallocate statically allocate data. --- src/h/external.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/h/external.h b/src/h/external.h index 877f45b57..622b3dc8f 100644 --- a/src/h/external.h +++ b/src/h/external.h @@ -34,7 +34,7 @@ extern void GC_free(void *); #define cl_alloc_atomic GC_malloc_atomic_ignore_off_page #define cl_alloc_align(s,d) GC_malloc(s) #define cl_alloc_atomic_align(s,d) GC_malloc_atomic_ignore_off_page(s) -#define cl_dealloc(p,s) GC_free(p) +#define cl_dealloc(p,s) #define ecl_register_static_root(x) #else extern cl_object si_room_report _ARGS((int narg));