1
0
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:
UzixLS
2018-11-03 16:20:02 +03:00
parent 339353cce8
commit 30df122aba
339 changed files with 11011 additions and 1945 deletions

0
kexcrt/msvc/STDINT.H Executable file → Normal file
View File

0
kexcrt/msvc/argcargv.c Executable file → Normal file
View File

0
kexcrt/msvc/argcargv.h Executable file → Normal file
View File

0
kexcrt/msvc/concrt0.c Executable file → Normal file
View File

0
kexcrt/msvc/dllcrt0.c Executable file → Normal file
View File

7
kexcrt/msvc/init.c Executable file → Normal file
View 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
View File

0
kexcrt/msvc/wincrt0.c Executable file → Normal file
View File