From d54dcb2efc4be344900a7721ac4b65b47840c5d2 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Tue, 26 Jul 2022 22:21:52 +0200 Subject: user/libc: exit() What an interesting commit. --- src/user/bootstrap/tar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/user/bootstrap/tar.c') diff --git a/src/user/bootstrap/tar.c b/src/user/bootstrap/tar.c index a392f4c..75883e6 100644 --- a/src/user/bootstrap/tar.c +++ b/src/user/bootstrap/tar.c @@ -1,9 +1,9 @@ +#include "tar.h" #include #include #include #include - -#include "tar.h" +#include #define BUF_SIZE 64 @@ -36,7 +36,7 @@ void tar_driver(void *base) { break; } } - _syscall_exit(0); + exit(0); } static void *tar_open(const char *path, int len, void *base, size_t base_len) { -- cgit v1.2.3