blob: 0960388ecc1307315d6e7446588bbd2ef1f006f4 (
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 = RtGetApp();
CA_MUST_PASS(kSharedApplication);
}
|