summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/System.Core/Sources/Start.c
diff options
context:
space:
mode:
Diffstat (limited to 'Public/Developer/System.Core/Sources/Start.c')
-rw-r--r--Public/Developer/System.Core/Sources/Start.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/Public/Developer/System.Core/Sources/Start.c b/Public/Developer/System.Core/Sources/Start.c
deleted file mode 100644
index 24d41a1e..00000000
--- a/Public/Developer/System.Core/Sources/Start.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/** ===========================================
- (C) Mahrouss Logic
- ===========================================*/
-
-#include <System.Core/Headers/Heap.h>
-
-/// @brief Main Application object, retrieved from __start symbol.
-CA_EXTERN_C ObjectRef kApplicationObject = NULL;
-
-/// @brief Inits the library.
-/// @return if it was succesful or not.
-CA_EXTERN_C VoidType __start(VoidType) {
- kApplicationObject = RtGetAppObject();
- CA_MUST_PASS(kApplicationObject);
-}