musl-tcc/src/unistd/_exit.c

8 lines
94 B
C

#include <unistd.h>
#include <stdlib.h>
_Noreturn void _exit(int status)
{
_Exit(status);
}