2011-08-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>

* include/float.h: Modify guard to accomodate CLang.

        Thanks to Ruben Van Boxem for the report.
This commit is contained in:
Chris Sutcliffe 2011-08-20 04:12:22 +00:00
parent ea2b1b2ff0
commit 0ed575b596
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-08-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/float.h: Modify guard to accomodate CLang.
Thanks to Ruben Van Boxem for the report.
2011-08-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> 2011-08-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* tlssup.c: Remove mingwm10.dll fallback. * tlssup.c: Remove mingwm10.dll fallback.

View File

@ -26,7 +26,8 @@
* _FLOAT_H___ macro, may be found first, thus... * _FLOAT_H___ macro, may be found first, thus...
* *
*/ */
#ifndef _FLOAT_H___ #if !defined(_FLOAT_H___) && !defined(__FLOAT_H)
/* /*
* ...when we didn't find the GCC-supplied header first, we want to pull * ...when we didn't find the GCC-supplied header first, we want to pull
* it in now; include_next should achieve this, (and we must rely on the * it in now; include_next should achieve this, (and we must rely on the