summaryrefslogtreecommitdiff
path: root/userland/init/init.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-06 20:55:03 +0100
committerAnton Kling <anton@kling.gg>2023-11-06 20:55:03 +0100
commit2753031a63117fd9de2d189d6731b4de8dd94769 (patch)
treed7318d37e952a093c5202834ad9353bd5d9b1894 /userland/init/init.c
parentf605d8538fde29e29420180746476802f3198144 (diff)
Userland: Remove old coreutil applications that have moved to minibox
Diffstat (limited to 'userland/init/init.c')
-rw-r--r--userland/init/init.c15
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;
-}