Files
Arquivotheca.SunOS-4.1.4/lib/libc/sys/common/wait3.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

17 lines
392 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)wait3.c 1.1 94/10/31 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));
}