diff --git a/src/kernel/libroot/posix/stdlib/exit.c b/src/kernel/libroot/posix/stdlib/exit.c index 1cdcfc0917..465302acdc 100644 --- a/src/kernel/libroot/posix/stdlib/exit.c +++ b/src/kernel/libroot/posix/stdlib/exit.c @@ -25,6 +25,8 @@ static int32 sExitStackIndex = 0; void abort() { + fprintf(stderr, "Abort\n"); + raise(SIGABRT); exit(EXIT_FAILURE); }