From 97149ba590564355c631e0902149710dd73862f5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 25 Sep 1998 13:17:32 +0000 Subject: Added ENOSYS stubs for a number of process routines. --- cpukit/posix/src/execl.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cpukit/posix/src/execl.c (limited to 'cpukit/posix/src/execl.c') 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 + +int execl( + const char *path, + const char *arg, + ... +) +{ + errno = ENOSYS; + return -1; +} -- cgit v1.2.3