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/fork.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cpukit/posix/src/fork.c (limited to 'cpukit/posix/src/fork.c') diff --git a/cpukit/posix/src/fork.c b/cpukit/posix/src/fork.c new file mode 100644 index 0000000000..11cac91bdb --- /dev/null +++ b/cpukit/posix/src/fork.c @@ -0,0 +1,14 @@ +/* + * fork() - POSIX 1003.1b 3.1.1 + * + * $Id$ + */ + +#include +#include + +int fork( void ) +{ + errno = ENOSYS; + return -1; +} -- cgit v1.2.3