mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-05 03:07:40 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
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();
|
|
}
|