diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-11-04 04:37:24 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-11-04 04:37:24 +0000 |
commit | e547d07a488ab17397217e2a57594c78bf747373 (patch) | |
tree | 27ff5a616a1a4c6172cceb824be19e609b5d80a1 /libc/unistd/execvp.c | |
parent | cb9fa11843a7ea4a353a1a9954c8e054b35332b2 (diff) |
More cleanups. Fix things so tinylogin compiles.
Fix a bug in getdelim -- patch from David Whedon <dwhedon@gordian.com>.
Diffstat (limited to 'libc/unistd/execvp.c')
-rw-r--r-- | libc/unistd/execvp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/unistd/execvp.c b/libc/unistd/execvp.c index b2aeee917..943303332 100644 --- a/libc/unistd/execvp.c +++ b/libc/unistd/execvp.c @@ -2,6 +2,7 @@ #include <unistd.h> extern char **environ; +extern int execvep(const char *path, char *__const argv[], char *__const envp[]); int execvp(__const char *path, char *__const argv[]) { |