summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/waitpid.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/waitpid.c')
-rw-r--r--cpukit/posix/src/waitpid.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/cpukit/posix/src/waitpid.c b/cpukit/posix/src/waitpid.c
deleted file mode 100644
index f20161b5a9..0000000000
--- a/cpukit/posix/src/waitpid.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * wait() - POSIX 1003.1b 3.2.1
- *
- * $Id$
- */
-
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <errno.h>
-
-int wait(
- int *stat_loc
-)
-{
- errno = ENOSYS;
- return -1;
-}