Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
a223dbd27ae36fe53f9f67f86caf685b729593fc
/
.
/
src
/
exit
/
_Exit.c
blob: 7a6115c7bbc71265929b20c8817d8476ee184b39 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
"syscall.h"
_Noreturn
void
_Exit
(
int
ec
)
{
__syscall
(
SYS_exit_group
,
ec
);
for
(;;)
__syscall
(
SYS_exit
,
ec
);
}