2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
16 This entire header is C99 / C++0X
40 int feclearexcept(int excepts);
41 int fegetexceptflag(fexcept_t* flagp, int excepts);
42 int feraiseexcept(int excepts);
43 int fesetexceptflag(const fexcept_t* flagp, int excepts);
44 int fetestexcept(int excepts);
46 int fesetround(int round);
47 int fegetenv(fenv_t* envp);
48 int feholdexcept(fenv_t* envp);
49 int fesetenv(const fenv_t* envp);
50 int feupdateenv(const fenv_t* envp);
59 #ifndef _LIBCPP_FENV_H
60 # error <cfenv> tried including <fenv.h> but didn't find libc++'s <fenv.h> header. \
61 This usually means that your header search paths are not configured properly. \
62 The header search paths should contain the C++ Standard Library headers before \
63 any C Standard Library, and you are probably using compiler flags that make that \
67 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
68 # pragma GCC system_header
71 _LIBCPP_BEGIN_NAMESPACE_STD
73 using ::fenv_t _LIBCPP_USING_IF_EXISTS;
74 using ::fexcept_t _LIBCPP_USING_IF_EXISTS;
76 using ::feclearexcept _LIBCPP_USING_IF_EXISTS;
77 using ::fegetexceptflag _LIBCPP_USING_IF_EXISTS;
78 using ::feraiseexcept _LIBCPP_USING_IF_EXISTS;
79 using ::fesetexceptflag _LIBCPP_USING_IF_EXISTS;
80 using ::fetestexcept _LIBCPP_USING_IF_EXISTS;
81 using ::fegetround _LIBCPP_USING_IF_EXISTS;
82 using ::fesetround _LIBCPP_USING_IF_EXISTS;
83 using ::fegetenv _LIBCPP_USING_IF_EXISTS;
84 using ::feholdexcept _LIBCPP_USING_IF_EXISTS;
85 using ::fesetenv _LIBCPP_USING_IF_EXISTS;
86 using ::feupdateenv _LIBCPP_USING_IF_EXISTS;
88 _LIBCPP_END_NAMESPACE_STD
90 #endif // _LIBCPP_CFENV