[rtsan] Remove mkfifoat interceptor (#116997)
[llvm-project.git] / libcxx / include / cfloat
blob5d1b38c557dcadaff399be8321c5d708a78ebe43
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
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
7 //
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_CFLOAT
11 #define _LIBCPP_CFLOAT
14     cfloat synopsis
16 Macros:
18     FLT_ROUNDS
19     FLT_EVAL_METHOD     // C99
20     FLT_RADIX
22     FLT_HAS_SUBNORM     // C11
23     DBL_HAS_SUBNORM     // C11
24     LDBL_HAS_SUBNORM    // C11
26     FLT_MANT_DIG
27     DBL_MANT_DIG
28     LDBL_MANT_DIG
30     DECIMAL_DIG         // C99
31     FLT_DECIMAL_DIG     // C11
32     DBL_DECIMAL_DIG     // C11
33     LDBL_DECIMAL_DIG    // C11
35     FLT_DIG
36     DBL_DIG
37     LDBL_DIG
39     FLT_MIN_EXP
40     DBL_MIN_EXP
41     LDBL_MIN_EXP
43     FLT_MIN_10_EXP
44     DBL_MIN_10_EXP
45     LDBL_MIN_10_EXP
47     FLT_MAX_EXP
48     DBL_MAX_EXP
49     LDBL_MAX_EXP
51     FLT_MAX_10_EXP
52     DBL_MAX_10_EXP
53     LDBL_MAX_10_EXP
55     FLT_MAX
56     DBL_MAX
57     LDBL_MAX
59     FLT_EPSILON
60     DBL_EPSILON
61     LDBL_EPSILON
63     FLT_MIN
64     DBL_MIN
65     LDBL_MIN
67     FLT_TRUE_MIN        // C11
68     DBL_TRUE_MIN        // C11
69     LDBL_TRUE_MIN       // C11
72 #include <__config>
74 #include <float.h>
76 #ifndef _LIBCPP_FLOAT_H
77 #   error <cfloat> tried including <float.h> but didn't find libc++'s <float.h> header. \
78           This usually means that your header search paths are not configured properly. \
79           The header search paths should contain the C++ Standard Library headers before \
80           any C Standard Library, and you are probably using compiler flags that make that \
81           not be the case.
82 #endif
84 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
85 #  pragma GCC system_header
86 #endif
88 #endif // _LIBCPP_CFLOAT