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