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/app/init/tests/tests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/user/app/init/tests/tests.h') diff --git a/src/user/app/init/tests/tests.h b/src/user/app/init/tests/tests.h index 23ed1e3..39294eb 100644 --- a/src/user/app/init/tests/tests.h +++ b/src/user/app/init/tests/tests.h @@ -13,7 +13,7 @@ void test_semaphore(void); #define argify(str) str, sizeof(str) - 1 #define test_fail() do { \ printf("\033[31m" "TEST FAILED: %s:%xh\n" "\033[0m", __func__, __LINE__); \ - _syscall_exit(0); \ + exit(0); \ } while (0) #define assert(cond) if (!(cond)) test_fail(); -- cgit v1.2.3