summaryrefslogtreecommitdiff
path: root/lisp_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisp_api.h')
-rw-r--r--lisp_api.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp_api.h b/lisp_api.h
index 70d317b..6361031 100644
--- a/lisp_api.h
+++ b/lisp_api.h
@@ -49,4 +49,11 @@ value *car(value *cons);
value *cdr(value *cons);
value *reverse(value *list);
+typedef struct {
+ const char *name;
+ value *v;
+} module_export;
+
+module_export *module_init();
+
#endif