aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/unistd/exit.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-13 21:28:03 +0200
committerMarvin Borner2020-05-13 21:28:03 +0200
commite1a6ed079303dc7d218f1d5326a13b6755781271 (patch)
treeb4fad9901c9c272d8d4b2d5588f216c9d7088f3e /src/userspace/libc/unistd/exit.c
parent10be53d077c238801f328bef4d11abfec61324db (diff)
Fixed exit in unistd instead of stdlib
Diffstat (limited to 'src/userspace/libc/unistd/exit.c')
-rw-r--r--src/userspace/libc/unistd/exit.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/userspace/libc/unistd/exit.c b/src/userspace/libc/unistd/exit.c
deleted file mode 100644
index 03b54fe..0000000
--- a/src/userspace/libc/unistd/exit.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdint.h>
-#include <syscall.h>
-
-void exit(u32 code)
-{
- syscall_exit(code);
- while (1) {
- };
-} \ No newline at end of file