Setup REL runtime

This commit is contained in:
robojumper
2024-05-23 14:24:34 +02:00
parent 105a75e065
commit f4d0f5c8ba
497 changed files with 4079 additions and 26 deletions
+15
View File
@@ -0,0 +1,15 @@
#include <REL/executor.h>
void _prolog(void) {
ModuleConstructorsX(_ctors);
ModuleProlog();
}
void _epilog(void) {
ModuleEpilog();
ModuleDestructorsX(_dtors);
}
void _unresolved(void) {
ModuleUnresolved();
}