[sys] This seems to help fork() a small bit

This commit is contained in:
Kevin Lange 2011-11-18 22:14:00 -06:00
parent 4052a8f63a
commit 8aee786497

View File

@ -130,7 +130,8 @@ static int execve(const char * filename, char *const argv[], char *const envp[])
}
static int sys_fork() {
return fork();
uint32_t f = fork();
return f;
}
static int getgraphicsaddress() {