chiark / gitweb /
[PATCH] sync klibc with release 0.95
[elogind.git] / klibc / klibc / waitpid.c
1 /*
2  * waitpid.c
3  */
4
5 #include <sys/types.h>
6 #include <sys/resource.h>
7 #include <sys/wait.h>
8
9 pid_t waitpid(pid_t pid, int *status, int options)
10 {
11   return wait4(pid, status, options, NULL);
12 }