diff options
author | Anton Kling <anton@kling.gg> | 2024-12-15 01:30:24 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-15 01:30:24 +0100 |
commit | 19482e5ef5b6710b4b9a52edcb1bb39692336d7a (patch) | |
tree | 4b36953acd4ba6975a16ec57643267ac5f05b8bf /userland/libc/include/unistd.h | |
parent | fd724fc40e527a87d4e521cd704283cdf10f51c4 (diff) |
libc: Add setenv/getenv
Diffstat (limited to 'userland/libc/include/unistd.h')
-rw-r--r-- | userland/libc/include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/include/unistd.h b/userland/libc/include/unistd.h index 3f17df4..6905a18 100644 --- a/userland/libc/include/unistd.h +++ b/userland/libc/include/unistd.h @@ -13,7 +13,7 @@ extern char *optarg; int close(int fildes); int ftruncate(int fildes, size_t length); -int execv(char *path, char **argv); +int execv(const char *pathname, char *const argv[]); int pipe(int fd[2]); int dup(int fildes); int dup2(int org_fd, int new_fd); |