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:
0
kexcrt/msvc/STDINT.H
Executable file → Normal file
0
kexcrt/msvc/STDINT.H
Executable file → Normal file
0
kexcrt/msvc/argcargv.c
Executable file → Normal file
0
kexcrt/msvc/argcargv.c
Executable file → Normal file
0
kexcrt/msvc/argcargv.h
Executable file → Normal file
0
kexcrt/msvc/argcargv.h
Executable file → Normal file
0
kexcrt/msvc/concrt0.c
Executable file → Normal file
0
kexcrt/msvc/concrt0.c
Executable file → Normal file
0
kexcrt/msvc/dllcrt0.c
Executable file → Normal file
0
kexcrt/msvc/dllcrt0.c
Executable file → Normal file
7
kexcrt/msvc/init.c
Executable file → Normal file
7
kexcrt/msvc/init.c
Executable file → Normal file
@ -65,8 +65,15 @@ int atexit(_PVFV func)
|
||||
return -1;
|
||||
}
|
||||
|
||||
static int exit_done;
|
||||
|
||||
void __exit(void)
|
||||
{
|
||||
if (exit_done)
|
||||
return;
|
||||
|
||||
exit_done = 1;
|
||||
|
||||
// do pre-terminators
|
||||
_initterm(__xp_a, __xp_z);
|
||||
// do terminators
|
||||
|
0
kexcrt/msvc/init.h
Executable file → Normal file
0
kexcrt/msvc/init.h
Executable file → Normal file
0
kexcrt/msvc/wincrt0.c
Executable file → Normal file
0
kexcrt/msvc/wincrt0.c
Executable file → Normal file
Reference in New Issue
Block a user