aboutsummaryrefslogtreecommitdiff
path: root/src/lib/libc/start.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/start.c')
-rw-r--r--src/lib/libc/start.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lib/libc/start.c b/src/lib/libc/start.c
new file mode 100644
index 0000000..49a6ca1
--- /dev/null
+++ b/src/lib/libc/start.c
@@ -0,0 +1,17 @@
+#include <kogata/syscall.h>
+
+void malloc_setup();
+
+int main(int, char**);
+
+void __libkogata_start() {
+ malloc_setup();
+
+ // TODO : more setup ?
+
+ int ret = main(0, 0);
+
+ exit(ret);
+}
+
+/* vim: set ts=4 sw=4 tw=0 noet :*/