Major build system changes
[tpg/acess2.git] / Usermode / Libraries / libgcc.so_src / libgcc.c
1 /* Acess GCC Helper Library
2  *
3  */
4 #include <acess/sys.h>
5 #include <stdint.h>
6
7 // === CODE ===
8 int SoMain()
9 {
10         return 0;
11 }
12
13 // --- Errors ---
14 void __stack_chk_fail()
15 {
16         write(2, "FATAL ERROR: Stack Check Failed\n", 32);
17         _exit(-1);
18         for(;;);
19 }
20

UCC git Repository :: git.ucc.asn.au