/* `HUGE_VAL' constants for IEEE 754 machines (where it is infinity).
Used by <stdlib.h> and <math.h> functions for overflow.
ARM version.
- Copyright (C) 1992, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
+ Copyright (C) 1992, 95, 96, 97, 98, 99, 2000 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
# if __GNUC_PREREQ(2,95)
-# define HUGE_VAL (0x1.0p2047)
+# define HUGE_VAL (__extension__ 0x1.0p2047)
# else
# if __GNUC_PREREQ(2,95)
-# define HUGE_VALF (0x1.0p255f)
+# define HUGE_VALF (__extension__ 0x1.0p255f)
# else
/* `HUGE_VAL' constants for m68k (where it is infinity).
Used by <stdlib.h> and <math.h> functions for overflow.
- Copyright (C) 1992, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1995, 1996, 1997, 1999, 2000 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
# if __GNUC_PREREQ(2,95)
-# define HUGE_VAL (0x1.0p2047)
+# define HUGE_VAL (__extension__ 0x1.0p2047)
# else
# if __GNUC_PREREQ(2,95)
-# define HUGE_VALF (0x1.0p255f)
-# define HUGE_VALL (0x1.0p32767L)
+# define HUGE_VALF (__extension__ 0x1.0p255f)
+# define HUGE_VALL (__extension__ 0x1.0p32767L)
# else