diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-27 02:59:23 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-27 02:59:23 -0500 |
commit | f2374ed852654ca13404986d8c04f82bf58812cb (patch) | |
tree | e221764ed9590fe28df82e3bb0a3455573c6015c /include/unistd.h | |
parent | 015d33c5075b9c0a4df8f28e844e4f7ace91c647 (diff) | |
download | musl-f2374ed852654ca13404986d8c04f82bf58812cb.tar.gz musl-f2374ed852654ca13404986d8c04f82bf58812cb.tar.xz musl-f2374ed852654ca13404986d8c04f82bf58812cb.zip |
implement fexecve
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index c0994af4..f819429e 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -86,6 +86,7 @@ int execle(const char *, ...); int execl(const char *, ...); int execvp(const char *, char *const []); int execlp(const char *, ...); +int fexecve(int, char *const [], char *const []); void _exit(int); pid_t getpid(void); |