forked from OSchip/llvm-project
<float.h>: Don't seek #include_next if -ffreestanding for targeting mingw.
llvm-svn: 220356
This commit is contained in:
parent
21297a532e
commit
a267847538
|
@ -28,7 +28,7 @@
|
|||
* additional definitions provided for Windows.
|
||||
* For more details see http://msdn.microsoft.com/en-us/library/y0ybw9fy.aspx
|
||||
*/
|
||||
#if (defined(__MINGW32__) || defined(_MSC_VER)) && \
|
||||
#if (defined(__MINGW32__) || defined(_MSC_VER)) && __STDC_HOSTED__ && \
|
||||
__has_include_next(<float.h>)
|
||||
# include_next <float.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue