summaryrefslogtreecommitdiff
path: root/modules/test_module.c
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 15:51:54 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 15:51:54 +0100
commita2ab90cfb9e364a3de7157b2ea2905e4c944583d (patch)
treef0dc1ca808a0f0b570c028178d80ebf79ff16a03 /modules/test_module.c
parentdb3fdda53f16644181a6c68b3e9152af9b300066 (diff)
renamed builtins to procedures
Diffstat (limited to 'modules/test_module.c')
-rw-r--r--modules/test_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/test_module.c b/modules/test_module.c
index ead7b91..f43a6d1 100644
--- a/modules/test_module.c
+++ b/modules/test_module.c
@@ -10,7 +10,7 @@ module_export *module_init() {
static module_export exports[2];
exports[0].name = "hello";
- exports[0].v = make_builtin(&hello_fun);
+ exports[0].v = make_procedure(&hello_fun);
exports[1].name = NULL;
exports[1].v = NULL;