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