mirror of
https://github.com/fluencelabs/musl
synced 2025-06-30 15:11:55 +00:00
8 lines
160 B
C
8 lines
160 B
C
![]() |
#include <sys/wait.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
pid_t waitpid(pid_t pid, int *status, int options)
|
||
|
{
|
||
|
return syscall4(__NR_wait4, pid, (long)status, options, 0);
|
||
|
}
|