chiark / gitweb /
[PATCH] added vsyslog support to klibc.
[elogind.git] / klibc / klibc / wait.c
1 /*
2  * wait.c
3  */
4
5 #include <stdlib.h>
6 #include <sys/wait.h>
7 #include <sys/types.h>
8
9 pid_t wait(int *status)
10 {
11   return wait4((pid_t)-1, status, 0, NULL);
12 }