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