summaryrefslogtreecommitdiff
path: root/src/REL/executor.c
diff options
context:
space:
mode:
authorLuke Street <luke.street@encounterpc.com>2023-09-10 00:42:26 -0400
committerLuke Street <luke.street@encounterpc.com>2023-09-10 00:48:55 -0400
commitadb95b135c3d7498eba29bbd9728d345eed5a407 (patch)
tree655575b939c12067569263171b68c079b1a232c8 /src/REL/executor.c
parent81ac53f1317dafb3506ae3ed8b2820d40645c3c8 (diff)
Import project
Original repository: https://github.com/encounter/ww
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..dba7c42f
--- /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();
+}