use abort() instead of exit(1)

This commit is contained in:
2025-03-20 10:57:01 +01:00
parent b017f503eb
commit cc55e01281

View File

@@ -14,5 +14,5 @@ noreturn void fatal(char const* fmt, ...) {
va_end(args);
fprintf(stderr, "\033[91mE: %s\033[0m\n", buf);
exit(1);
abort();
}