diff options
-rw-r--r-- | gc.c | 7 | ||||
-rw-r--r-- | gc.h | 1 |
2 files changed, 0 insertions, 8 deletions
@@ -111,13 +111,6 @@ val prot1(val *loc) return nil; /* for use in macros */ } -void rel1(val *loc) -{ - /* protect and release calls must nest. */ - if (*--gc_prot_top != loc) - abort(); -} - void protect(val *first, ...) { val *next = first; @@ -27,7 +27,6 @@ void gc_init(val *stack_bottom); void gc_late_init(void); val prot1(val *loc); -void rel1(val *loc); void protect(val *, ...); val make_obj(void); void gc(void); |