diff options
Diffstat (limited to 'Userland/Libraries/LibC/stdlib.h')
-rw-r--r-- | Userland/Libraries/LibC/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/stdlib.h b/Userland/Libraries/LibC/stdlib.h index fc029d2ce3..480e570cc7 100644 --- a/Userland/Libraries/LibC/stdlib.h +++ b/Userland/Libraries/LibC/stdlib.h @@ -61,6 +61,7 @@ int mbtowc(wchar_t*, const char*, size_t); int wctomb(char*, wchar_t); size_t wcstombs(char*, const wchar_t*, size_t); char* realpath(const char* pathname, char* buffer); +__attribute__((noreturn)) void _Exit(int status); #define RAND_MAX 32767 int rand(); |