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

13 lines
263 B
C

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