diff options
author | dzwdz | 2023-08-27 02:06:32 +0200 |
---|---|---|
committer | dzwdz | 2023-08-27 02:06:32 +0200 |
commit | e43939bcc6123e02314aa403eef94d5ace441f7f (patch) | |
tree | ac0cea10e8708ae1a6a7a400257c4bc59175a91f /src/libc/include/unistd.h | |
parent | 1f938c20b4a82ca1267ab9a1ec0922878a21ca6b (diff) |
ports: qbe, cproc :^)
Diffstat (limited to 'src/libc/include/unistd.h')
-rw-r--r-- | src/libc/include/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libc/include/unistd.h b/src/libc/include/unistd.h index ac5afc0..750d6e2 100644 --- a/src/libc/include/unistd.h +++ b/src/libc/include/unistd.h @@ -22,6 +22,7 @@ int isatty(int fd); int execv(const char *path, char *const argv[]); int execvp(const char *path, char *const argv[]); +int execvpe(const char *path, char *const argv[], char *const envp[]); int execve(const char *path, char *const argv[], char *const envp[]); int chdir(const char *path); |