2010-05-11 19:42:16 +00:00
|
|
|
// -*- C++ -*-
|
2021-11-17 21:25:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
2019-01-19 10:56:40 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_CFLOAT
|
|
|
|
#define _LIBCPP_CFLOAT
|
|
|
|
|
|
|
|
/*
|
|
|
|
cfloat synopsis
|
|
|
|
|
|
|
|
Macros:
|
|
|
|
|
|
|
|
FLT_ROUNDS
|
|
|
|
FLT_EVAL_METHOD // C99
|
|
|
|
FLT_RADIX
|
|
|
|
|
2018-07-31 23:29:06 +00:00
|
|
|
FLT_HAS_SUBNORM // C11
|
|
|
|
DBL_HAS_SUBNORM // C11
|
|
|
|
LDBL_HAS_SUBNORM // C11
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
FLT_MANT_DIG
|
|
|
|
DBL_MANT_DIG
|
|
|
|
LDBL_MANT_DIG
|
|
|
|
|
|
|
|
DECIMAL_DIG // C99
|
2018-07-31 23:29:06 +00:00
|
|
|
FLT_DECIMAL_DIG // C11
|
|
|
|
DBL_DECIMAL_DIG // C11
|
|
|
|
LDBL_DECIMAL_DIG // C11
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
FLT_DIG
|
|
|
|
DBL_DIG
|
|
|
|
LDBL_DIG
|
|
|
|
|
|
|
|
FLT_MIN_EXP
|
|
|
|
DBL_MIN_EXP
|
|
|
|
LDBL_MIN_EXP
|
|
|
|
|
|
|
|
FLT_MIN_10_EXP
|
|
|
|
DBL_MIN_10_EXP
|
|
|
|
LDBL_MIN_10_EXP
|
|
|
|
|
|
|
|
FLT_MAX_EXP
|
|
|
|
DBL_MAX_EXP
|
|
|
|
LDBL_MAX_EXP
|
|
|
|
|
|
|
|
FLT_MAX_10_EXP
|
|
|
|
DBL_MAX_10_EXP
|
|
|
|
LDBL_MAX_10_EXP
|
|
|
|
|
|
|
|
FLT_MAX
|
|
|
|
DBL_MAX
|
|
|
|
LDBL_MAX
|
|
|
|
|
|
|
|
FLT_EPSILON
|
|
|
|
DBL_EPSILON
|
|
|
|
LDBL_EPSILON
|
|
|
|
|
|
|
|
FLT_MIN
|
|
|
|
DBL_MIN
|
|
|
|
LDBL_MIN
|
|
|
|
|
2018-07-31 23:29:06 +00:00
|
|
|
FLT_TRUE_MIN // C11
|
|
|
|
DBL_TRUE_MIN // C11
|
|
|
|
LDBL_TRUE_MIN // C11
|
2010-05-11 19:42:16 +00:00
|
|
|
*/
|
|
|
|
|
2022-03-25 16:55:36 +00:00
|
|
|
#include <__assert> // all public C++ headers provide the assertion handler
|
2010-05-11 19:42:16 +00:00
|
|
|
#include <__config>
|
2022-08-08 21:03:56 +00:00
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
#include <float.h>
|
|
|
|
|
2022-08-08 21:03:56 +00:00
|
|
|
#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
|
|
|
|
|
2011-10-17 20:05:10 +00:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-02 01:16:40 +00:00
|
|
|
# pragma GCC system_header
|
2011-10-17 20:05:10 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2021-04-20 16:03:32 +00:00
|
|
|
#endif // _LIBCPP_CFLOAT
|