summaryrefslogtreecommitdiff
path: root/lisp.h
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 15:47:48 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 15:47:48 +0100
commitdb3fdda53f16644181a6c68b3e9152af9b300066 (patch)
treef9d3c5c9d9f9752582d162d08c9b0d025a6c6ceb /lisp.h
parentb86d3361836935297c6aedb0318ed8a34e4c52f0 (diff)
add module system to load .so with load_module builtin
Diffstat (limited to 'lisp.h')
-rw-r--r--lisp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp.h b/lisp.h
index a972ecc..df5835e 100644
--- a/lisp.h
+++ b/lisp.h
@@ -37,6 +37,7 @@ value *builtin_sub(env *e, value *args);
value *builtin_mul(env *e, value *args);
value *builtin_div(env *e, value *args);
value *builtin_lt(env *e, value *args);
+value *builtin_load_module(env *e, value *args);
int is_integer(double x);