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