diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-31 06:36:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-31 06:36:39 +0000 |
commit | 7e118246da012348761ecbfb88bc2ac3d985cbc0 (patch) | |
tree | b68e6059b87b9cf034861d9ceef900d3f3135065 /sysdeps | |
parent | 3f66a0cf1b9c630cb5bb2ea8a9e2068aa4c0c6f9 (diff) | |
download | glibc-7e118246da012348761ecbfb88bc2ac3d985cbc0.tar.gz glibc-7e118246da012348761ecbfb88bc2ac3d985cbc0.tar.xz glibc-7e118246da012348761ecbfb88bc2ac3d985cbc0.zip |
Update.
2001-01-29 Ben Collins <bcollins@debian.org> * sysdeps/sparc/fpu/fraiseexcpt.c: Include <float.h>. * sysdeps/hppa/fpu/fraiseexcpt.c: Likewise. * sysdeps/m68k/fpu/fraiseexcpt.c: Likewise. * sysdeps/s390/fpu/fraiseexcpt.c: Likewise. * locale/programs/ld-measurement.c (measurement_finish): Fix a typo. Patch by Marko Myllynen <myllynen@lut.fi>. * string/bits/string2.h (__strpbrk_c2): Correct parameter types (int instead of char). (__strpbrk_c3): Likewise. Reported by GOTO Masanori <gotom@debian.or.jp>. Reported by Arkadiusz Miskiewicz <misiek@pld.ORG.PL>.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/hppa/fpu/fraiseexcpt.c | 1 | ||||
-rw-r--r-- | sysdeps/m68k/fpu/fraiseexcpt.c | 1 | ||||
-rw-r--r-- | sysdeps/s390/fpu/fraiseexcpt.c | 1 | ||||
-rw-r--r-- | sysdeps/sparc/fpu/fraiseexcpt.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/hppa/fpu/fraiseexcpt.c b/sysdeps/hppa/fpu/fraiseexcpt.c index 7feeb9946f..c0cce6e7ce 100644 --- a/sysdeps/hppa/fpu/fraiseexcpt.c +++ b/sysdeps/hppa/fpu/fraiseexcpt.c @@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA. */ #include <fenv.h> +#include <float.h> #include <math.h> int diff --git a/sysdeps/m68k/fpu/fraiseexcpt.c b/sysdeps/m68k/fpu/fraiseexcpt.c index dcdd6c9131..1c559c2b26 100644 --- a/sysdeps/m68k/fpu/fraiseexcpt.c +++ b/sysdeps/m68k/fpu/fraiseexcpt.c @@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA. */ #include <fenv.h> +#include <float.h> #include <math.h> int diff --git a/sysdeps/s390/fpu/fraiseexcpt.c b/sysdeps/s390/fpu/fraiseexcpt.c index e6c716cfc6..8047eb4c22 100644 --- a/sysdeps/s390/fpu/fraiseexcpt.c +++ b/sysdeps/s390/fpu/fraiseexcpt.c @@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA. */ #include <fenv_libc.h> +#include <float.h> #include <math.h> diff --git a/sysdeps/sparc/fpu/fraiseexcpt.c b/sysdeps/sparc/fpu/fraiseexcpt.c index b6c5d80541..ce6092499b 100644 --- a/sysdeps/sparc/fpu/fraiseexcpt.c +++ b/sysdeps/sparc/fpu/fraiseexcpt.c @@ -18,6 +18,7 @@ Boston, MA 02111-1307, USA. */ #include <fenv.h> +#include <float.h> #include <math.h> #include <shlib-compat.h> |