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