shithub: scc

ref: c970c0f3b3510ff26976834a880977b5bdc1237d
dir: /src/libc/stdlib/_Exit.c/

View raw version
#include <stdlib.h>

#include "../syscall.h"

#undef _Exit

void
_Exit(int status)
{
	_exit(status);
}