blob: a4391fd18911b43f39ba84f0bcff31cd4a45c6a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
# include <sys/wait.h>
pid_t wait3(__WAIT_STATUS stat_loc, int options, struct rusage *usage)
{
return __wait4_nocancel(WAIT_ANY, stat_loc, options, usage);
}
#endif
|