diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 18:58:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 18:58:10 +0000 |
commit | c9a0e4abd0072737ab23f4e28703ce1b29269054 (patch) | |
tree | 155ab994a2e4e0298dc381f16a58e131dcc6a4ac /sysdeps | |
parent | 0e5d0c0ad882cbd74e57404a617ad042814bcff0 (diff) | |
download | glibc-c9a0e4abd0072737ab23f4e28703ce1b29269054.tar glibc-c9a0e4abd0072737ab23f4e28703ce1b29269054.tar.gz glibc-c9a0e4abd0072737ab23f4e28703ce1b29269054.tar.bz2 glibc-c9a0e4abd0072737ab23f4e28703ce1b29269054.zip |
Update.
* sysdeps/ia64/fpu/fraiseexcpt.c: Include <float.h>. Removed
unused variable.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ia64/fpu/fraiseexcpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ia64/fpu/fraiseexcpt.c b/sysdeps/ia64/fpu/fraiseexcpt.c index 57111a94cf..b37e62437e 100644 --- a/sysdeps/ia64/fpu/fraiseexcpt.c +++ b/sysdeps/ia64/fpu/fraiseexcpt.c @@ -1,5 +1,5 @@ /* Raise given exceptions. - Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jes Sorensen <Jes.Sorensen@cern.ch>, 2000. @@ -19,6 +19,7 @@ Boston, MA 02111-1307, USA. */ #include <fenv.h> +#include <float.h> #include <math.h> #include <signal.h> #include <unistd.h> @@ -27,7 +28,6 @@ int feraiseexcept (int excepts) { - fenv_t fpsr; double tmp; double dummy; |