summaryrefslogtreecommitdiff
path: root/src/REL/executor.c
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2024-05-23 14:24:34 +0200
committerrobojumper <robojumper@gmail.com>2024-05-23 14:24:34 +0200
commitf4d0f5c8bab0c296f1971304f8903b6969dd7ee0 (patch)
treef42c828460f46a389fd0d0687edc1dca48fe6957 /src/REL/executor.c
parent105a75e065b8731715d730494972a1660999d42d (diff)
Setup REL runtime
Diffstat (limited to 'src/REL/executor.c')
-rw-r--r--src/REL/executor.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/REL/executor.c b/src/REL/executor.c
new file mode 100644
index 00000000..64776d13
--- /dev/null
+++ b/src/REL/executor.c
@@ -0,0 +1,15 @@
+#include <REL/executor.h>
+
+void _prolog(void) {
+ ModuleConstructorsX(_ctors);
+ ModuleProlog();
+}
+
+void _epilog(void) {
+ ModuleEpilog();
+ ModuleDestructorsX(_dtors);
+}
+
+void _unresolved(void) {
+ ModuleUnresolved();
+}