Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
nativetools
/
732977ae9bb1eb8c4e6af6728223601eb6e23e10
/
.
/
nativelibc
/
exit.c
blob: f3f35e01996e82844d4ac3803e790423261af1aa [
file
] [
log
] [
blame
] [
raw
]
#include
<windows.h>
#include
<nt.h>
void
exit
(
int
status
)
{
NtTerminateProcess
((
void
*)-
1
,
status
);
// Tells compiler do not to generate ret instruction
exit
(
status
);
while
(
1
);
}