diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-02 23:51:31 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-02 23:51:31 +0000 |
commit | 8143dcecfced1b07f986196964cd813cc15bbddc (patch) | |
tree | 24c16a7071a506f0a725f31760324c3db65ef009 /libc/sysdeps/linux/common/wait4.c | |
parent | 9acc3f9fe6e284375fbf4a29881e43dc5b4a50e0 (diff) |
Allow partly IMA compile of this directory
Diffstat (limited to 'libc/sysdeps/linux/common/wait4.c')
-rw-r--r-- | libc/sysdeps/linux/common/wait4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/wait4.c b/libc/sysdeps/linux/common/wait4.c index db60e167d..a48a519ae 100644 --- a/libc/sysdeps/linux/common/wait4.c +++ b/libc/sysdeps/linux/common/wait4.c @@ -8,12 +8,13 @@ */ #include "syscalls.h" +#include <sys/resource.h> #define __NR___syscall_wait4 __NR_wait4 static inline _syscall4(int, __syscall_wait4, __kernel_pid_t, pid, int *, status, int, opts, void *, rusage); -int wait4(pid_t pid, int *status, int opts, void *rusage) +int wait4(pid_t pid, int *status, int opts, struct rusage *rusage) { return (__syscall_wait4(pid, status, opts, rusage)); } |