#ifndef _LIBCPP_CFENV
#define _LIBCPP_CFENV
#include <__config>
#include <fenv.h>
#ifndef _LIBCPP_FENV_H
# error <cfenv> tried including <fenv.h> but didn't find libc++'s <fenv.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
_LIBCPP_BEGIN_NAMESPACE_STD
fenv_t _LIBCPP_USING_IF_EXISTS;
fexcept_t _LIBCPP_USING_IF_EXISTS;
feclearexcept _LIBCPP_USING_IF_EXISTS;
fegetexceptflag _LIBCPP_USING_IF_EXISTS;
feraiseexcept _LIBCPP_USING_IF_EXISTS;
fesetexceptflag _LIBCPP_USING_IF_EXISTS;
fetestexcept _LIBCPP_USING_IF_EXISTS;
fegetround _LIBCPP_USING_IF_EXISTS;
fesetround _LIBCPP_USING_IF_EXISTS;
fegetenv _LIBCPP_USING_IF_EXISTS;
feholdexcept _LIBCPP_USING_IF_EXISTS;
fesetenv _LIBCPP_USING_IF_EXISTS;
feupdateenv _LIBCPP_USING_IF_EXISTS;
_LIBCPP_END_NAMESPACE_STD
#endif