diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-18 15:51:54 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-18 15:51:54 +0100 |
| commit | a2ab90cfb9e364a3de7157b2ea2905e4c944583d (patch) | |
| tree | f0dc1ca808a0f0b570c028178d80ebf79ff16a03 /modules | |
| parent | db3fdda53f16644181a6c68b3e9152af9b300066 (diff) | |
renamed builtins to procedures
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/test_module.c | 2 |
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; |
