Remove building with NOCRYPTO option
[minix.git] / external / bsd / libc++ / dist / libcxx / include / cfenv
blobdd7db37f8e48496c67a9d88789afcef609695a63
1 // -*- C++ -*-
2 //===---------------------------- cctype ----------------------------------===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is dual licensed under the MIT and the University of Illinois Open
7 // Source Licenses. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
11 #ifndef _LIBCPP_CFENV
12 #define _LIBCPP_CFENV
15     cfenv synopsis
17 This entire header is C99 / C++0X
19 Macros:
21     FE_DIVBYZERO
22     FE_INEXACT
23     FE_INVALID
24     FE_OVERFLOW
25     FE_UNDERFLOW
26     FE_ALL_EXCEPT
27     FE_DOWNWARD
28     FE_TONEAREST
29     FE_TOWARDZERO
30     FE_UPWARD
31     FE_DFL_ENV
33 namespace std
36 Types:
38     fenv_t
39     fexcept_t
41 int feclearexcept(int excepts);
42 int fegetexceptflag(fexcept_t* flagp, int excepts);
43 int feraiseexcept(int excepts);
44 int fesetexceptflag(const fexcept_t* flagp, int excepts);
45 int fetestexcept(int excepts);
46 int fegetround();
47 int fesetround(int round);
48 int fegetenv(fenv_t* envp);
49 int feholdexcept(fenv_t* envp);
50 int fesetenv(const fenv_t* envp);
51 int feupdateenv(const fenv_t* envp);
53 }  // std
56 #include <__config>
57 #include <fenv.h>
59 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
60 #pragma GCC system_header
61 #endif
63 _LIBCPP_BEGIN_NAMESPACE_STD
65 using ::fenv_t;
66 using ::fexcept_t;
68 using ::feclearexcept;
69 using ::fegetexceptflag;
70 using ::feraiseexcept;
71 using ::fesetexceptflag;
72 using ::fetestexcept;
73 using ::fegetround;
74 using ::fesetround;
75 using ::fegetenv;
76 using ::feholdexcept;
77 using ::fesetenv;
78 using ::feupdateenv;
80 _LIBCPP_END_NAMESPACE_STD
82 #endif  // _LIBCPP_CFENV