From 202bdb553c2dc073f06105b12fbf0b2a8045069b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 3 Nov 2018 01:49:40 +0100 Subject: Implemented sys$execve(). It's really crufty, but it basically works! --- LibC/unistd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'LibC/unistd.h') diff --git a/LibC/unistd.h b/LibC/unistd.h index 205002dff8..abcf410aba 100644 --- a/LibC/unistd.h +++ b/LibC/unistd.h @@ -9,6 +9,7 @@ extern char** environ; inline int getpagesize() { return 4096; } pid_t fork(); +int execve(const char* filename, const char** argv, const char** envp); pid_t getsid(pid_t); pid_t setsid(); int setpgid(pid_t pid, pid_t pgid); -- cgit v1.2.3