This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] fraiseexcpt.c, some need to include float.h


Noticed this was done for ia64 recently, and it turns out that several
others need it aswell. Sparc I caught during a compile, the rest are
from visual inspection.

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.


-- 
 -----------=======-=-======-=========-----------=====------------=-=------
/  Ben Collins  --  ...on that fantastic voyage...  --  Debian GNU/Linux   \
`  bcollins@debian.org  --  bcollins@openldap.org  --  bcollins@linux.com  '
 `---=========------=======-------------=-=-----=-===-======-------=--=---'
--- sysdeps/hppa/fpu/fraiseexcpt.c 	2000/10/15 03:36:03	1.1
+++ sysdeps/hppa/fpu/fraiseexcpt.c 	2001/01/29 23:12:39
@@ -19,6 +19,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <fenv.h>
+#include <float.h>
 #include <math.h>
 
 int
--- sysdeps/m68k/fpu/fraiseexcpt.c 	2000/02/26 01:09:38	1.6
+++ sysdeps/m68k/fpu/fraiseexcpt.c 	2001/01/29 23:12:39
@@ -19,6 +19,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <fenv.h>
+#include <float.h>
 #include <math.h>
 
 int
--- sysdeps/s390/fpu/fraiseexcpt.c 	2000/08/21 17:04:30	1.1
+++ sysdeps/s390/fpu/fraiseexcpt.c 	2001/01/29 23:12:39
@@ -20,6 +20,7 @@
    Boston, MA 02111-1307, USA. */
 
 #include <fenv_libc.h>
+#include <float.h>
 #include <math.h>
 
 
--- sysdeps/sparc/fpu/fraiseexcpt.c 	2000/06/29 20:57:24	1.5
+++ sysdeps/sparc/fpu/fraiseexcpt.c 	2001/01/29 23:12:39
@@ -18,6 +18,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include <fenv.h>
+#include <float.h>
 #include <math.h>
 #include <shlib-compat.h>
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]