Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
nico
/
archive
/
v0.95a
/
.
/
lib
/
wait.c
blob: 2815c16aeeb578592cfdb17bd69f95eb1311b4d0 [
file
]
/*
* linux/lib/wait.c
*
* (C) 1991 Linus Torvalds
*/
#define
__LIBRARY__
#include
<unistd.h>
#include
<sys/wait.h>
_syscall3
(
pid_t
,
waitpid
,
pid_t
,
pid
,
int
*,
wait_stat
,
int
,
options
)
pid_t
wait
(
int
*
wait_stat
)
{
return
waitpid
(-
1
,
wait_stat
,
0
);
}