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