mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
16 lines
231 B
C
16 lines
231 B
C
#include "REL/executor.h"
|
|
|
|
void _prolog(void) {
|
|
ModuleConstructorsX(_ctors);
|
|
ModuleProlog();
|
|
}
|
|
|
|
void _epilog(void) {
|
|
ModuleEpilog();
|
|
ModuleDestructorsX(_dtors);
|
|
}
|
|
|
|
void _unresolved(void) {
|
|
ModuleUnresolved();
|
|
}
|