mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
10 lines
99 B
C
Executable File
10 lines
99 B
C
Executable File
#include <windows.h>
|
|
|
|
void __exit(void);
|
|
|
|
void __cdecl exit(int v)
|
|
{
|
|
__exit();
|
|
ExitProcess(v);
|
|
}
|