diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2006-07-06 07:36:58 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2006-07-06 07:36:58 +0000 |
commit | 26d31dc917d6dd05cea56a5f7169586d9a7abf05 (patch) | |
tree | 61bceeae0be934f3baedafa4ea58a538ed0b4f28 /winsup/mingw/include/math.h | |
parent | b0b9243869b0db21dec9ad143718e4fb5cc61dc7 (diff) | |
download | cygnal-26d31dc917d6dd05cea56a5f7169586d9a7abf05.tar.gz cygnal-26d31dc917d6dd05cea56a5f7169586d9a7abf05.tar.bz2 cygnal-26d31dc917d6dd05cea56a5f7169586d9a7abf05.zip |
* include/math.h (__INFF,__INFL): Remove '#'.
Diffstat (limited to 'winsup/mingw/include/math.h')
-rw-r--r-- | winsup/mingw/include/math.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index 0da7869ba..b03bc541f 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -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) */ |