Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
nativetools
/
8c9b117d24ca0bc3b2aee7bd40f0338f07d95bf8
/
.
/
nativelibc
/
process
/
exit.c
blob: 936867ab36ac05c479e797356015fd72e179365e [
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
);
}
void
exit
(
int
status
)
{
_exit
(
status
);
}