diff options
author | dzwdz | 2022-07-26 23:04:49 +0200 |
---|---|---|
committer | dzwdz | 2022-07-26 23:04:49 +0200 |
commit | 57152f6a03d857118fa82e0a28657d869f4c7110 (patch) | |
tree | 3b3143810a65cf5e5b1d1b9612aee157e33076a2 /src/user/lib/include/unistd.h | |
parent | d7767be24bdcc0101c2ba08c03600b9f3c608663 (diff) |
user/libc: execv()
Diffstat (limited to 'src/user/lib/include/unistd.h')
-rw-r--r-- | src/user/lib/include/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/user/lib/include/unistd.h b/src/user/lib/include/unistd.h index b825e45..4f367ca 100644 --- a/src/user/lib/include/unistd.h +++ b/src/user/lib/include/unistd.h @@ -4,3 +4,5 @@ int fork(void); int close(handle_t h); _Noreturn void exit(int); + +int execv(const char *path, char *const argv[]); |