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