Kernel/LibC: pass environ pointer to process

This commit is contained in:
2023-06-05 21:12:08 +03:00
parent 668517a723
commit b0e9ab0519
6 changed files with 14 additions and 5 deletions
+2 -1
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: