From cb646cb936b45073b476f903b8f6e2ce14f2a4d5 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 27 Sep 1998 16:37:16 +0000 Subject: New files. --- cpukit/posix/src/wait.c | 17 +++++++++++++++++ cpukit/posix/src/waitpid.c | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 cpukit/posix/src/wait.c create mode 100644 cpukit/posix/src/waitpid.c (limited to 'cpukit/posix') diff --git a/cpukit/posix/src/wait.c b/cpukit/posix/src/wait.c new file mode 100644 index 0000000000..bbef04a2eb --- /dev/null +++ b/cpukit/posix/src/wait.c @@ -0,0 +1,17 @@ +/* + * waitpid() - POSIX 1003.1b 3.2.1 + * + * $Id$ + */ + +#include +#include +#include + +int wait( + int *stat_loc +) +{ + errno = ENOSYS; + return -1; +} diff --git a/cpukit/posix/src/waitpid.c b/cpukit/posix/src/waitpid.c new file mode 100644 index 0000000000..f20161b5a9 --- /dev/null +++ b/cpukit/posix/src/waitpid.c @@ -0,0 +1,17 @@ +/* + * wait() - POSIX 1003.1b 3.2.1 + * + * $Id$ + */ + +#include +#include +#include + +int wait( + int *stat_loc +) +{ + errno = ENOSYS; + return -1; +} -- cgit v1.2.3