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

Tidy up ELFLoader.

This commit is contained in:
Andreas Kling 2018-11-04 14:09:30 +01:00
parent 422b5403e5
commit b5c5286ee1
5 changed files with 117 additions and 120 deletions

View file

@ -8,6 +8,7 @@ void __assertion_failed(const char* msg, const char* file, unsigned line, const
{
fprintf(stderr, "ASSERTION FAILED: %s\n%s:%u in %s\n", msg, file, line, func);
abort();
for (;;);
}
}