From 6fc79f1dacf676008042f647315769e5e8edbcfa Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 23 Jun 2008 05:22:06 +0000 Subject: Turn execvpe() into an internal libc routine. Adding exevpe() has caused some ports to break. Even though execvpe() is a useful routine, it does not conform to any standards. This patch is a little bit different from the patch sent to the mailing list. I forgot to remove execvpe from the Symbol.map (which does not seem to miscompile libc, though). Reviewed by: davidxu Approved by: philip --- include/unistd.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/unistd.h') diff --git a/include/unistd.h b/include/unistd.h index cfc8ce4..53efe49 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -335,7 +335,6 @@ int execlp(const char *, const char *, ...); int execv(const char *, char * const *); int execve(const char *, char * const *, char * const *); int execvp(const char *, char * const *); -int execvpe(const char *, char * const *, char * const *); pid_t fork(void); long fpathconf(int, int); char *getcwd(char *, size_t); -- cgit v1.1