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