fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / libgloss / libnosys / wait.c
blob2a785be1fed82f3db5c41f40858ae832b8cf4356
1 /*
2 * Stub version of wait.
3 */
5 #include "config.h"
6 #include <_ansi.h>
7 #include <_syslist.h>
8 #include <errno.h>
9 #undef errno
10 extern int errno;
11 #include "warning.h"
13 int
14 _DEFUN (_wait, (status),
15 int *status)
17 errno = ENOSYS;
18 return -1;
21 stub_warning(_wait)