chiark
/
gitweb
/
~ianmdlvl
/
elogind.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[PATCH] support SUBSYSTEM as a rule key
[elogind.git]
/
klibc
/
klibc
/
wait3.c
1
/*
2
* wait3.c
3
*/
4
5
#include <sys/types.h>
6
#include <sys/resource.h>
7
#include <sys/wait.h>
8
9
pid_t wait3(int *status, int options, struct rusage *rusage)
10
{
11
return wait4((pid_t)-1, status, options, rusage);
12
}