Kernel/LibC: Add support for init_array and fini_array

This commit is contained in:
2024-08-26 14:04:58 +03:00
parent 7c4b9218f2
commit 2c520391eb
18 changed files with 154 additions and 51 deletions

View File

@@ -15,10 +15,12 @@
char** environ;
extern void init_malloc();
extern void _init_malloc();
extern void _init_stdio();
extern "C" void _init_libc(char** _environ)
{
init_malloc();
_init_malloc();
_init_stdio();
if (!_environ)
return;