aboutsummaryrefslogtreecommitdiff
path: root/src/start.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/start.c')
-rw-r--r--src/start.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/start.c b/src/start.c
deleted file mode 100644
index 09ca6c9..0000000
--- a/src/start.c
+++ /dev/null
@@ -1,10 +0,0 @@
-__attribute__((__section__(".text.startup"))) void _start(void)
-{
- int main(void);
- extern char *__bss_start, *__bss_end;
-
- for (char *s = __bss_start; s < __bss_end; s++)
- *s = 0;
-
- main();
-}