1 /* waitpid.c --- waiting for process termination, under Windows NT
2 Jim Blandy <jimb@cyclic.com> --- August 1995 */
11 /* Wait for the process PID to exit. Put the return status in *statusp.
12 OPTIONS is not supported yet under Windows NT. We hope it's always zero. */
13 pid_t waitpid (pid, statusp, options)
18 /* We don't know how to deal with any options yet. */
19 assert (options == 0);
21 return _cwait (statusp, pid, _WAIT_CHILD);