summaryrefslogtreecommitdiff
path: root/LibC/unistd.h
diff options
context:
space:
mode:
Diffstat (limited to 'LibC/unistd.h')
-rw-r--r--LibC/unistd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/unistd.h b/LibC/unistd.h
index f93fc35f37..a88a11b7c6 100644
--- a/LibC/unistd.h
+++ b/LibC/unistd.h
@@ -13,6 +13,7 @@ inline int getpagesize() { return 4096; }
pid_t fork();
int execve(const char* filename, char* const argv[], char* const envp[]);
int execvp(const char* filename, char* const argv[]);
+int execl(const char* filename, const char* arg, ...);
void sync();
void _exit(int status);
pid_t getsid(pid_t);