24 lines
No EOL
433 B
C
24 lines
No EOL
433 B
C
#include "REL/board_executor.h"
|
|
#include "rel_sqrt_consts.h"
|
|
|
|
static void ObjectSetup(void) {
|
|
BoardObjectSetup(BoardCreate, BoardDestroy);
|
|
}
|
|
|
|
s32 _prolog(void) {
|
|
const VoidFunc* ctors = _ctors;
|
|
while (*ctors != 0) {
|
|
(**ctors)();
|
|
ctors++;
|
|
}
|
|
ObjectSetup();
|
|
return 0;
|
|
}
|
|
|
|
void _epilog(void) {
|
|
const VoidFunc* dtors = _dtors;
|
|
while (*dtors != 0) {
|
|
(**dtors)();
|
|
dtors++;
|
|
}
|
|
} |