chiark / gitweb /
[PATCH] tweak udev-test.pl to report '0' errors if that's what happened.
[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 }