diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-06-02 07:11:51 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-06-02 07:11:51 -0700 |
commit | 8275067de1b6b94d88047e12095872541fa40ffd (patch) | |
tree | 03567a60e310f558fe95707daf2ccf711e217bbb /include | |
parent | 3d5243d4160519e56cba6eceae9b1d0e6b642515 (diff) |
Add missing __execvpe prototype.
Avoids warnings.
Diffstat (limited to 'include')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index 34d7477f9e..72d7e2e88c 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -61,6 +61,8 @@ extern int __chdir (__const char *__path); extern int __fchdir (int __fd); extern char *__getcwd (char *__buf, size_t __size); extern int __rmdir (const char *__path); +extern int __execvpe (const char *file, char *const argv[], + char *const envp[]); /* Get the canonical absolute name of the named directory, and put it in SIZE bytes of BUF. Returns NULL if the directory couldn't be determined or |