Kernel/LibC: pass environ pointer to process

This commit is contained in:
Bananymous
2023-06-05 20:34:08 +03:00
parent 6b73f4d187
commit 896b919c9d
6 changed files with 14 additions and 5 deletions

View File

@@ -31,7 +31,8 @@ namespace Kernel
{
uintptr_t entry { 0 };
int argc { 0 };
char** argv { 0 };
char** argv { nullptr };
char** envp { nullptr };
};
public: