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.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/userspace/libc/stdlib.h') diff --git a/src/userspace/libc/stdlib.h b/src/userspace/libc/stdlib.h index 583df15..4670b8c 100644 --- a/src/userspace/libc/stdlib.h +++ b/src/userspace/libc/stdlib.h @@ -10,6 +10,9 @@ char *htoa(u32 n); int htoi(char *str); // Exit functions +void exit(u32 code); +#define EXIT_SUCCESS 0 +#define EXIT_FAILURE 1 // Memory management void *malloc(u32 size); -- cgit v1.2.3