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