LibC: Implement _Exit
This just calls _exit as POSIX says they can be equivalent
This commit is contained in:
parent
92862fdf39
commit
12bc7480e0
|
@ -43,6 +43,11 @@ void exit(int status)
|
|||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
void _Exit(int status)
|
||||
{
|
||||
_exit(status);
|
||||
}
|
||||
|
||||
int abs(int val)
|
||||
{
|
||||
return val < 0 ? -val : val;
|
||||
|
|
Loading…
Reference in New Issue