summaryrefslogtreecommitdiff
path: root/libc/unistd/execvp.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2004-01-02 08:44:58 +0000
committerManuel Novoa III <mjn3@codepoet.org>2004-01-02 08:44:58 +0000
commit400e6fc264cbe6ca3ca572d94bbf5f929f256713 (patch)
tree7c7cd0d0dc3e59fe1ab7e369e73c1d521797c47b /libc/unistd/execvp.c
parent33e58d3c9e1282b210313c8ee46daeb74edb99e8 (diff)
Redo the exec functions to comply with SUSv3.
Diffstat (limited to 'libc/unistd/execvp.c')
-rw-r--r--libc/unistd/execvp.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/unistd/execvp.c b/libc/unistd/execvp.c
deleted file mode 100644
index e7e496063..000000000
--- a/libc/unistd/execvp.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <unistd.h>
-
-extern int execvep(const char *path, char *__const argv[], char *__const envp[]);
-
-int execvp(__const char *path, char *__const argv[])
-{
- return execvep(path, argv, __environ);
-}