diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-27 05:00:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-27 05:00:18 +0000 |
commit | b7375f6c40e6428992790d10279c180641f9dc21 (patch) | |
tree | a85483bce14893314c0b2710aea282ef8544a3ed /sysdeps | |
parent | 8cb079d41b2108d7a6db4c91a51156464912548b (diff) | |
download | glibc-b7375f6c40e6428992790d10279c180641f9dc21.tar.gz glibc-b7375f6c40e6428992790d10279c180641f9dc21.tar.xz glibc-b7375f6c40e6428992790d10279c180641f9dc21.zip |
Update.
1999-07-26 Ulrich Drepper <drepper@cygnus.com> * sysdeps/posix/wait3.c: Help compiling in presence of __transparent_union__. Reported by John Tobey <jtobey@banta-im.com>.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/posix/wait3.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sysdeps/posix/wait3.c b/sysdeps/posix/wait3.c index 261754251f..65cfb8e98e 100644 --- a/sysdeps/posix/wait3.c +++ b/sysdeps/posix/wait3.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 93, 95, 96, 97, 98 Free Software Foundation, Inc. +/* Copyright (C) 1992, 93, 95, 96, 97, 98, 99 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 @@ -27,10 +27,7 @@ there. If the WUNTRACED bit is set in OPTIONS, return status for stopped children; otherwise don't. */ pid_t -__wait3 (stat_loc, options, usage) - __WAIT_STATUS stat_loc; - int options; - struct rusage *usage; +__wait3 (__WAIT_STATUS stat_loc, int options, struct rusage *usage) { if (usage != NULL) { |