Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
landing-branch
/
.
/
src
/
exit
/
abort.c
blob: 203dd35cb99d23b16a31409b149df824950b73f9 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<signal.h>
#include
"syscall.h"
_Noreturn
void
abort
(
void
)
{
raise
(
SIGABRT
);
raise
(
SIGKILL
);
for
(;;);
}