diff options
author | Roland McGrath <roland@gnu.org> | 2002-04-23 22:22:24 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-04-23 22:22:24 +0000 |
commit | b62b62acf0b2ab1a627cf1238f65871a3d8511cc (patch) | |
tree | 9a1e4e848cc05078eaf904ded1d3509c8c89d767 /sysdeps/mach/hurd/wait4.c | |
parent | f0b1c8ea85cb305b5ca6d32c2ad09a93a5900743 (diff) | |
download | glibc-b62b62acf0b2ab1a627cf1238f65871a3d8511cc.tar.gz glibc-b62b62acf0b2ab1a627cf1238f65871a3d8511cc.tar.xz glibc-b62b62acf0b2ab1a627cf1238f65871a3d8511cc.zip |
2002-04-23 Roland McGrath <roland@frob.com>
* sysdeps/mach/hurd/send.c: int -> size_t for WROTE. * sysdeps/mach/hurd/sendto.c: Likewise. * hurd/hurdioctl.c (siocgifconf): int -> size_t for DATA_LEN. * sysdeps/mach/hurd/wait4.c (__wait4): natural_t -> int for SIGCODE. * sysdeps/mach/hurd/getpriority.c: unsigned int -> size_t for PISIZE.
Diffstat (limited to 'sysdeps/mach/hurd/wait4.c')
-rw-r--r-- | sysdeps/mach/hurd/wait4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/wait4.c b/sysdeps/mach/hurd/wait4.c index 2a6e820097..d9e23412ea 100644 --- a/sysdeps/mach/hurd/wait4.c +++ b/sysdeps/mach/hurd/wait4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993,94,95,96,97,98,99 Free Software Foundation, Inc. +/* Copyright (C) 1993,94,95,96,97,98,99,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -29,7 +29,7 @@ __wait4 (pid_t pid, __WAIT_STATUS_DEFN stat_loc, int options, pid_t dead; error_t err; struct rusage ignored; - natural_t sigcode; + int sigcode; int dummy; err = __USEPORT (PROC, __proc_wait (port, pid, options, |