From e1a6ed079303dc7d218f1d5326a13b6755781271 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 13 May 2020 21:28:03 +0200 Subject: Fixed exit in unistd instead of stdlib --- src/userspace/libc/stdlib/exit.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/userspace/libc/stdlib/exit.c (limited to 'src/userspace/libc/stdlib/exit.c') diff --git a/src/userspace/libc/stdlib/exit.c b/src/userspace/libc/stdlib/exit.c new file mode 100644 index 0000000..03b54fe --- /dev/null +++ b/src/userspace/libc/stdlib/exit.c @@ -0,0 +1,9 @@ +#include +#include + +void exit(u32 code) +{ + syscall_exit(code); + while (1) { + }; +} \ No newline at end of file -- cgit v1.2.3