diff options
Diffstat (limited to 'klibc/klibc/waitpid.c')
-rw-r--r-- | klibc/klibc/waitpid.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/klibc/klibc/waitpid.c b/klibc/klibc/waitpid.c deleted file mode 100644 index f7c5cbfbc0..0000000000 --- a/klibc/klibc/waitpid.c +++ /dev/null @@ -1,12 +0,0 @@ -/* - * waitpid.c - */ - -#include <sys/types.h> -#include <sys/resource.h> -#include <sys/wait.h> - -pid_t waitpid(pid_t pid, int *status, int options) -{ - return wait4(pid, status, options, NULL); -} |