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);
}