summaryrefslogtreecommitdiffstats
path: root/newlib/libc
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2009-09-26 20:59:54 +0000
committerEric Blake <eblake@redhat.com>2009-09-26 20:59:54 +0000
commitb14f894fd157fd65f9abd223832d2feed05e2aca (patch)
tree7c7ea4212fcd33b66e8982453871b8574e906e4b /newlib/libc
parent52dba6a5c45e8d8ba1e237a15213311dc11d91fb (diff)
downloadcygnal-b14f894fd157fd65f9abd223832d2feed05e2aca.tar.gz
cygnal-b14f894fd157fd65f9abd223832d2feed05e2aca.tar.bz2
cygnal-b14f894fd157fd65f9abd223832d2feed05e2aca.zip
* libc/include/sys/unistd.h (execvpe, fexecve) [__CYGWIN__]:
Add declarations.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/include/sys/unistd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h
index 388ba4ee7..a91f105e5 100644
--- a/newlib/libc/include/sys/unistd.h
+++ b/newlib/libc/include/sys/unistd.h
@@ -49,6 +49,7 @@ int _EXFUN(execv, (const char *__path, char * const __argv[] ));
int _EXFUN(execve, (const char *__path, char * const __argv[], char * const __envp[] ));
int _EXFUN(execvp, (const char *__file, char * const __argv[] ));
#if defined(__CYGWIN__)
+int _EXFUN(execvpe, (const char *__file, char * const __argv[], char * const __envp[] ));
int _EXFUN(faccessat, (int __dirfd, const char *__path, int __mode, int __flags));
#endif
#if defined(__CYGWIN__) || defined(__rtems__) || defined(__SPU__)
@@ -60,6 +61,7 @@ int _EXFUN(fchown, (int __fildes, uid_t __owner, gid_t __group ));
#endif
#if defined(__CYGWIN__)
int _EXFUN(fchownat, (int __dirfd, const char *__path, uid_t __owner, gid_t __group, int __flags));
+int _EXFUN(fexecve, (int __fd, char * const __argv[], char * const __envp[] ));
#endif
pid_t _EXFUN(fork, (void ));
long _EXFUN(fpathconf, (int __fd, int __name ));