Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
nativetools
/
55f9ac2d289bc034c83ecc53b3e2d8a93be446d0
/
.
/
nativelibc
/
exit.c
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
);
}