summaryrefslogtreecommitdiff
path: root/src/unistd/execv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/execv.c')
-rw-r--r--src/unistd/execv.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/unistd/execv.c b/src/unistd/execv.c
deleted file mode 100644
index 3ff81846..00000000
--- a/src/unistd/execv.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <sys/types.h>
-#include <unistd.h>
-
-int execv(const char *path, char *const argv[])
-{
- extern char **environ;
- return execve(path, argv, environ);
-}
-/*
-POSIX(1)
-*/
-
-
-#endif