Patch from Charles-Antoine Gauthier <charles.gauthier@nrc.ca>

to fix problem where wait() was in this file -- not waitpid().
This commit is contained in:
Joel Sherrill
2000-03-21 15:56:54 +00:00
parent d56669456a
commit 15b6e46f70

View File

@@ -8,8 +8,10 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <errno.h> #include <errno.h>
int wait( int waitpid(
int *stat_loc pid_t pid,
int *stat_loc,
int options
) )
{ {
errno = ENOSYS; errno = ENOSYS;