Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
exit
/
_Exit.c
blob: 7a6115c7bbc71265929b20c8817d8476ee184b39 [
file
]
#include
<stdlib.h>
#include
"syscall.h"
_Noreturn
void
_Exit
(
int
ec
)
{
__syscall
(
SYS_exit_group
,
ec
);
for
(;;)
__syscall
(
SYS_exit
,
ec
);
}