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/init.c | |
parent | f605d8538fde29e29420180746476802f3198144 (diff) |
Userland: Remove old coreutil applications that have moved to minibox
Diffstat (limited to 'userland/init/init.c')
-rw-r--r-- | userland/init/init.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/userland/init/init.c b/userland/init/init.c deleted file mode 100644 index 78c4420..0000000 --- a/userland/init/init.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <stdarg.h> -#include <stddef.h> -#include <stdint.h> -#include <stdio.h> -#include <unistd.h> - -int main(void) { - if (fork()) - for (;;) - wait(NULL); - - char *a[] = {NULL}; - execv("/term", a); - return 1; -} |