summaryrefslogtreecommitdiff
path: root/libc/unistd/execv.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/execv.c
parent33e58d3c9e1282b210313c8ee46daeb74edb99e8 (diff)
Redo the exec functions to comply with SUSv3.
Diffstat (limited to 'libc/unistd/execv.c')
-rw-r--r--libc/unistd/execv.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/unistd/execv.c b/libc/unistd/execv.c
deleted file mode 100644
index 486f53745..000000000
--- a/libc/unistd/execv.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <unistd.h>
-
-int execv(__const char *path, char *__const argv[])
-{
- return execve(path, argv, __environ);
-}