diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index feadf9382..947955469 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -619,6 +619,14 @@ extern int execlp (const char *__file, const char *__arg, ...) __THROW __nonnull ((1)); libc_hidden_proto(execlp) +#ifdef __USE_GNU +/* Execute FILE, searching in the `PATH' environment variable if it contains + no slashes, with arguments ARGV and environment from a pointer */ +extern int execvpe (__const char *__file, char *__const __argv[], char *__const __envp[]) + __THROW __nonnull ((1)); +libc_hidden_proto(execvpe) +#endif + #if defined __USE_MISC || defined __USE_XOPEN /* Add INC to priority of the current process. */ |