Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
nativetools
/
bf63a4af4f84f534eab8b79f1b386229ab830bff
/
.
/
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
);
}