macro and text revision (-mdoc version 3)
[unix-history] / usr / src / lib / libc / gen / wait3.c
index 9bf78fc..287e99f 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)wait3.c    5.5 (Berkeley) %G%";
+static char sccsid[] = "@(#)wait3.c    5.6 (Berkeley) %G%";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -15,10 +15,10 @@ static char sccsid[] = "@(#)wait3.c 5.5 (Berkeley) %G%";
 #include <sys/resource.h>
 
 pid_t
 #include <sys/resource.h>
 
 pid_t
-wait3(pstat, options, rup)
-       union wait *pstat;
+wait3(istat, options, rup)
+       int *istat;
        int options;
        struct rusage *rup;
 {
        int options;
        struct rusage *rup;
 {
-       return (wait4(WAIT_ANY, pstat, options, rup));
+       return (wait4(WAIT_ANY, istat, options, rup));
 }
 }