mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 08:31:39 +00:00
9 lines
90 B
C
9 lines
90 B
C
#include <stdlib.h>
|
|
#include <signal.h>
|
|
|
|
void abort(void)
|
|
{
|
|
raise(SIGABRT);
|
|
for (;;);
|
|
}
|