mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-29 08:12:52 -04:00
178194ccb2
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
15 lines
230 B
C
15 lines
230 B
C
#include "REL/executor.h"
|
|
|
|
void _prolog(void) {
|
|
ModuleConstructorsX(_ctors);
|
|
ModuleProlog();
|
|
}
|
|
|
|
void _epilog(void) {
|
|
ModuleEpilog();
|
|
ModuleDestructorsX(_dtors);
|
|
}
|
|
|
|
void _unresolved(void) {
|
|
ModuleUnresolved();
|
|
} |