Tidy up ELFLoader.

This commit is contained in:
Andreas Kling 2018-11-04 14:09:30 +01:00
commit b5c5286ee1
Notes: sideshowbarker 2024-07-19 18:33:46 +09:00
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 (;;);
}
}