diff options
Diffstat (limited to 'src/user/app/init/driver/tmpfs.c')
-rw-r--r-- | src/user/app/init/driver/tmpfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/user/app/init/driver/tmpfs.c b/src/user/app/init/driver/tmpfs.c index 83c42c7..d9f73ab 100644 --- a/src/user/app/init/driver/tmpfs.c +++ b/src/user/app/init/driver/tmpfs.c @@ -2,6 +2,7 @@ #include <shared/mem.h> #include <stddef.h> #include <stdlib.h> +#include <unistd.h> struct node { const char *name; @@ -128,5 +129,5 @@ void tmpfs_drv(void) { } } - _syscall_exit(1); + exit(1); } |