summaryrefslogtreecommitdiff
path: root/libc/unistd/execv.c
diff options
context:
space:
mode:
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);
-}