From 15b6e46f70904b60d62f65828734d409bb0dc6f6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 21 Mar 2000 15:56:54 +0000 Subject: [PATCH] Patch from Charles-Antoine Gauthier to fix problem where wait() was in this file -- not waitpid(). --- c/src/exec/posix/src/waitpid.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/c/src/exec/posix/src/waitpid.c b/c/src/exec/posix/src/waitpid.c index f20161b5a9..d52177961d 100644 --- a/c/src/exec/posix/src/waitpid.c +++ b/c/src/exec/posix/src/waitpid.c @@ -8,8 +8,10 @@ #include #include -int wait( - int *stat_loc +int waitpid( + pid_t pid, + int *stat_loc, + int options ) { errno = ENOSYS;