mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 08:31:39 +00:00
12 lines
254 B
C
12 lines
254 B
C
#include <sys/wait.h>
|
|
#include <sys/resource.h>
|
|
#define SYSCALL_STANDALONE
|
|
#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);
|
|
}
|