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/execve.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cpukit/posix/src/execve.c (limited to 'cpukit/posix/src/execve.c') 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 + +int execve( + const char *path, + char *const argv[], + char *const envp[], + ... +) +{ + errno = ENOSYS; + return -1; +} -- cgit v1.2.3