From b8e0118b10424c890598953f877a53a44ff6f9d7 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 16 Jan 2001 19:14:23 +0000 Subject: A little update to wait* and a minor syscall cleanup. --- libc/sysdeps/linux/common/waitpid.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 libc/sysdeps/linux/common/waitpid.c (limited to 'libc/sysdeps/linux/common/waitpid.c') diff --git a/libc/sysdeps/linux/common/waitpid.c b/libc/sysdeps/linux/common/waitpid.c new file mode 100644 index 000000000..255a3c84e --- /dev/null +++ b/libc/sysdeps/linux/common/waitpid.c @@ -0,0 +1,9 @@ +#include +#include +#include +#include + +__pid_t waitpid(__pid_t pid, int *wait_stat, int options) +{ + return wait4(pid, wait_stat, options, NULL); +} -- cgit v1.2.3