mirror of
https://github.com/fluencelabs/musl
synced 2025-07-02 16:12:02 +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);
|
|
}
|