diff options
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; -} |