mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
import KernelEx-4.0-Final
This commit is contained in:
9
kexcrt/exit.c
Normal file
9
kexcrt/exit.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <windows.h>
|
||||
|
||||
void __exit(void);
|
||||
|
||||
void exit(int v)
|
||||
{
|
||||
__exit();
|
||||
ExitProcess(v);
|
||||
}
|
Reference in New Issue
Block a user