diff options
author | Anton Kling <anton@kling.gg> | 2023-11-06 20:55:03 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-06 20:55:03 +0100 |
commit | 2753031a63117fd9de2d189d6731b4de8dd94769 (patch) | |
tree | d7318d37e952a093c5202834ad9353bd5d9b1894 /userland/init/crt0_old.c | |
parent | f605d8538fde29e29420180746476802f3198144 (diff) |
Userland: Remove old coreutil applications that have moved to minibox
Diffstat (limited to 'userland/init/crt0_old.c')
-rw-r--r-- | userland/init/crt0_old.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/userland/init/crt0_old.c b/userland/init/crt0_old.c deleted file mode 100644 index 7d1e977..0000000 --- a/userland/init/crt0_old.c +++ /dev/null @@ -1,12 +0,0 @@ -#include <stdint.h> -int main(int argc, char **argv); -//int main(); - -void _start(int a, int b, int argc, char** argv) -{ - (void)a; - kprintf("argc : %x\n", &argc); - kprintf("argv : %x\n", &argv); - for(;;); -// main(argc, t); -} |