Files
Arquivotheca.SunOS-4.1.3/lib/libc/sys/common/wait3.c
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

17 lines
392 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)wait3.c 1.1 92/07/30 Copyright (C) 1986 Sun Microsystems, Inc";
#endif
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <syscall.h>
wait3(status, options, rusage)
union wait *status;
int options;
struct rusage *rusage;
{
return (wait4(0, status, options, rusage));
}