summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Sources/CRT0.c
blob: 03aa62b8d761508c64ca92dff6972a61796f7c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** ===========================================
 (C) Mahrouss Logic
    ===========================================*/

#include <System.Core/Headers/Heap.h>

/// @brief Inits the library.
/// @return if it was succesful or not.
CA_EXTERN_C DWordType __start(VoidType) {
  kApplicationObject = RtGetAppObject();
  CA_MUST_PASS(kApplicationObject);

  return 0;
}