blob: 673d25944d5226ce01619fb2e982207c1bb954b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef WAIT4_H
#define WAIT4_H
#include "syscall.h"
#include "types.h"
static int wait4(u64 pid, int *stat_addr, int options, struct rusage *usage)
{
return syscall(WAIT4, pid, stat_addr, options, usage);
}
#endif
|