blob: 49c066c6b4e11a3505b4335f6c03cd9caa9ae111 [file] [log] [blame] [raw]
#include <windows.h>
#include <nt.h>
#include <unistd.h>
void _exit(int status) {
NtTerminateProcess((void *)-1, status);
// Tells compiler do not to generate ret instruction
while(1);
}