blob: 5b91ba18482387219c8024c08c8518e96f25f637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* -------------------------------------------
Copyright Mahrouss Logic
------------------------------------------- */
#include <Headers/Defines.h>
/// @brief Inits the system library.
/// @return if it was succesful or not.
CA_EXTERN_C VoidType __start(VoidType) {
kSharedApplication = RtGetAppObject();
CA_MUST_PASS(kSharedApplication);
}
|