summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/wait3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/wait3.c')
-rw-r--r--lib/libc/gen/wait3.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libc/gen/wait3.c b/lib/libc/gen/wait3.c
index 238c4d671d9..2fae3cd1bfc 100644
--- a/lib/libc/gen/wait3.c
+++ b/lib/libc/gen/wait3.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: wait3.c,v 1.3 2003/06/02 20:18:35 millert Exp $";
+static char rcsid[] = "$OpenBSD: wait3.c,v 1.4 2004/05/18 02:05:52 jfb Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -37,10 +37,7 @@ static char rcsid[] = "$OpenBSD: wait3.c,v 1.3 2003/06/02 20:18:35 millert Exp $
#include <sys/resource.h>
pid_t
-wait3(istat, options, rup)
- int *istat;
- int options;
- struct rusage *rup;
+wait3(int *istat, int options, struct rusage *rup)
{
return (wait4(WAIT_ANY, istat, options, rup));
}