zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
musl
/
src
/
process
/
wait.c
Top
1
#
include
<sys/wait.h>
2
3
pid_t
wait
(
int
*
status
)
4
{
5
return
waitpid
(
(
pid_t
)
-
1
,
status
,
0
)
;
6
}