summaryrefslogtreecommitdiff
path: root/lisp_api.h
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-24 18:33:31 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-24 18:33:31 +0100
commitdc1fc66181cba96cc94f21f055676b952489dbd9 (patch)
tree61889b183df011298c41d314419b41e55ee02991 /lisp_api.h
parent991d7eaa2a9550c7be0a63d7c1ba7c38c7de2acf (diff)
start implementing mark&sweep
Diffstat (limited to 'lisp_api.h')
-rw-r--r--lisp_api.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp_api.h b/lisp_api.h
index 90e05e1..9527551 100644
--- a/lisp_api.h
+++ b/lisp_api.h
@@ -48,6 +48,7 @@ struct value {
env *env;
} thunk;
} as;
+ int reachable;
};
value *make_int(int i);