diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-03 19:16:21 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-03 19:16:21 +0000 |
commit | 063957fd156b241904a447ef1d4d9ec5e674e6f1 (patch) | |
tree | da2a70f0983d75fb794f5c3112e72635d9c349ee /libc/sysdeps | |
parent | 4222cc97e94c160817d38652163af2b96cf9c8da (diff) |
wait4 is pid_t, not int
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/wait4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/wait4.c b/libc/sysdeps/linux/common/wait4.c index a48a519ae..5434a009e 100644 --- a/libc/sysdeps/linux/common/wait4.c +++ b/libc/sysdeps/linux/common/wait4.c @@ -12,9 +12,9 @@ #define __NR___syscall_wait4 __NR_wait4 static inline _syscall4(int, __syscall_wait4, __kernel_pid_t, pid, - int *, status, int, opts, void *, rusage); + int *, status, int, opts, struct rusage *, rusage); -int wait4(pid_t pid, int *status, int opts, struct rusage *rusage) +pid_t wait4(pid_t pid, int *status, int opts, struct rusage *rusage) { return (__syscall_wait4(pid, status, opts, rusage)); } |