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