summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gc.c b/gc.c
index a644be3a..106daa25 100644
--- a/gc.c
+++ b/gc.c
@@ -561,6 +561,12 @@ void gc_mutated(val obj)
gc();
}
+val gc_push(val obj, val *plist)
+{
+ gc_mutated(obj);
+ return push(obj, plist);
+}
+
#endif
/*