mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
Compat work towards porting vim.
This commit is contained in:
parent
2e5b9d318f
commit
a356746d04
17 changed files with 200 additions and 77 deletions
|
@ -8,6 +8,7 @@ int main(int, char**);
|
|||
|
||||
int errno;
|
||||
char** environ;
|
||||
//bool __environ_is_malloced;
|
||||
|
||||
void __malloc_init();
|
||||
void __stdio_init();
|
||||
|
@ -16,6 +17,7 @@ int _start(int argc, char** argv, char** env)
|
|||
{
|
||||
errno = 0;
|
||||
environ = env;
|
||||
//__environ_is_malloced = false;
|
||||
|
||||
__stdio_init();
|
||||
__malloc_init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue