* include/math.h (__INFF,__INFL): Remove '#'.

This commit is contained in:
Danny Smith 2006-07-06 07:36:58 +00:00
parent b0b9243869
commit 26d31dc917
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2006-07-06 Danny Smith <dannysmith@users.sourceforge.net>
* include/math.h (__INFF,__INFL): Remove '#'.
2006-07-04 Danny Smith <dannysmith@users.sourceforge.net>
* mingwex/Makefile.in: Add -I$(srcdir)/.. to INCLUDES.

View File

@ -295,11 +295,11 @@ _CRTIMP int __cdecl _set_SSE2_enable (int);
#define INFINITY __builtin_inf()
#define NAN __builtin_nan("")
#else
#extern const float __INFF;
extern const float __INFF;
#define HUGE_VALF __INFF
#extern const long double __INFL;
extern const long double __INFL;
#define HUGE_VALL __INFL
#define INFINITY HUGE_VALF
#define INFINITY HUGE_VALF
extern const double __QNAN;
#define NAN __QNAN
#endif /* __MINGW_GNUC_PREREQ(3, 3) */