1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00

LibC: Mark _exit() as noreturn

We already do this for exit().
This commit is contained in:
Sergey Bugaev 2020-05-26 13:15:14 +03:00 committed by Andreas Kling
parent 83c809df5f
commit ac4a31e057
2 changed files with 1 additions and 2 deletions

View file

@ -208,7 +208,6 @@ void exit(int status)
fflush(stdout);
fflush(stderr);
_exit(status);
ASSERT_NOT_REACHED();
}
static void __atexit_to_cxa_atexit(void* handler)