summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/execv.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/src/execv.c')
-rw-r--r--c/src/exec/posix/src/execv.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/c/src/exec/posix/src/execv.c b/c/src/exec/posix/src/execv.c
deleted file mode 100644
index 857999333c..0000000000
--- a/c/src/exec/posix/src/execv.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * execv() - POSIX 1003.1b 3.1.2
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <errno.h>
-
-int execv(
- const char *file,
- char *const argv[]
-)
-{
- errno = ENOSYS;
- return -1;
-}