mirror of
https://github.com/fluencelabs/musl
synced 2025-05-02 10:32:16 +00:00
11 lines
227 B
C
11 lines
227 B
C
|
#include <sys/wait.h>
|
||
|
#include <sys/resource.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
pid_t wait4(pid_t, int *, int, struct rusage *);
|
||
|
|
||
|
pid_t wait3(int *status, int options, struct rusage *usage)
|
||
|
{
|
||
|
return wait4(-1, status, options, usage);
|
||
|
}
|