4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00

11 lines
219 B
C

#include <machine/syscall.h>
#include <errno.h>
/* Wait for a child process. Minimal implementation for a system without
processes just causes an error. */
int _wait(int *status)
{
errno = ECHILD;
return -1;
}