diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-11 22:51:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-11 22:51:00 +0000 |
commit | 174dc1b8cd932fb5cd3d50fe5317e0c29ee26c59 (patch) | |
tree | 7683117cfc44f8f09610b5f1f48bcdb1524031bb /libc/unistd/execvp.c | |
parent | 1eb3e9989a8241c1654788fc7589e1f679e73dff (diff) |
Reorg unistd dir
Diffstat (limited to 'libc/unistd/execvp.c')
-rw-r--r-- | libc/unistd/execvp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/unistd/execvp.c b/libc/unistd/execvp.c new file mode 100644 index 000000000..b2aeee917 --- /dev/null +++ b/libc/unistd/execvp.c @@ -0,0 +1,9 @@ + +#include <unistd.h> + +extern char **environ; + +int execvp(__const char *path, char *__const argv[]) +{ + return execvep(path, argv, environ); +} |