* sysdeps/ia64/fpu/fraiseexcpt.c: Include <float.h>.  Removed
	unused variable.
This commit is contained in:
Ulrich Drepper 2001-01-28 18:58:10 +00:00
parent 0e5d0c0ad8
commit c9a0e4abd0
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2001-01-28 Ulrich Drepper <drepper@redhat.com> 2001-01-28 Ulrich Drepper <drepper@redhat.com>
* sysdeps/ia64/fpu/fraiseexcpt.c: Include <float.h>. Removed
unused variable.
* sunrpc/xdr_rec.c (xdrrec_getpos): Add cast to long to avoid warning. * sunrpc/xdr_rec.c (xdrrec_getpos): Add cast to long to avoid warning.
* sunrpc/xdr_sizeof.c (x_inline): Likewise. * sunrpc/xdr_sizeof.c (x_inline): Likewise.

View File

@ -1,5 +1,5 @@
/* Raise given exceptions. /* 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. This file is part of the GNU C Library.
Contributed by Jes Sorensen <Jes.Sorensen@cern.ch>, 2000. Contributed by Jes Sorensen <Jes.Sorensen@cern.ch>, 2000.
@ -19,6 +19,7 @@
Boston, MA 02111-1307, USA. */ Boston, MA 02111-1307, USA. */
#include <fenv.h> #include <fenv.h>
#include <float.h>
#include <math.h> #include <math.h>
#include <signal.h> #include <signal.h>
#include <unistd.h> #include <unistd.h>
@ -27,7 +28,6 @@
int int
feraiseexcept (int excepts) feraiseexcept (int excepts)
{ {
fenv_t fpsr;
double tmp; double tmp;
double dummy; double dummy;