12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef _LIBCPP_CFLOAT
- #define _LIBCPP_CFLOAT
- #include <__config>
- #include <float.h>
- #ifndef _LIBCPP_FLOAT_H
- # error <cfloat> tried including <float.h> but didn't find libc++'s <float.h> header. \
- This usually means that your header search paths are not configured properly. \
- The header search paths should contain the C++ Standard Library headers before \
- any C Standard Library, and you are probably using compiler flags that make that \
- not be the case.
- #endif
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- # pragma GCC system_header
- #endif
- #endif
|