Home | History | Annotate | Line # | Download | only in mips64eb
      1 /* This file is automatically generated.  DO NOT EDIT! */
      2 /* Generated from: NetBSD: mknative-gcc,v 1.118 2024/02/21 08:24:46 mrg Exp  */
      3 /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
      4 
      5 // Predefined symbols and macros -*- C++ -*-
      6 
      7 // Copyright (C) 1997-2022 Free Software Foundation, Inc.
      8 //
      9 // This file is part of the GNU ISO C++ Library.  This library is free
     10 // software; you can redistribute it and/or modify it under the
     11 // terms of the GNU General Public License as published by the
     12 // Free Software Foundation; either version 3, or (at your option)
     13 // any later version.
     14 
     15 // This library is distributed in the hope that it will be useful,
     16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     18 // GNU General Public License for more details.
     19 
     20 // Under Section 7 of GPL version 3, you are granted additional
     21 // permissions described in the GCC Runtime Library Exception, version
     22 // 3.1, as published by the Free Software Foundation.
     23 
     24 // You should have received a copy of the GNU General Public License and
     25 // a copy of the GCC Runtime Library Exception along with this program;
     26 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     27 // <http://www.gnu.org/licenses/>.
     28 
     29 /** @file bits/c++config.h
     30  *  This is an internal header file, included by other library headers.
     31  *  Do not attempt to use it directly. @headername{version}
     32  */
     33 
     34 #ifndef _GLIBCXX_CXX_CONFIG_H
     35 #define _GLIBCXX_CXX_CONFIG_H 1
     36 
     37 // The major release number for the GCC release the C++ library belongs to.
     38 #define _GLIBCXX_RELEASE 12
     39 
     40 // The datestamp of the C++ library in compressed ISO date format.
     41 #define __GLIBCXX__ 20250711
     42 
     43 // Macros for various attributes.
     44 //   _GLIBCXX_PURE
     45 //   _GLIBCXX_CONST
     46 //   _GLIBCXX_NORETURN
     47 //   _GLIBCXX_NOTHROW
     48 //   _GLIBCXX_VISIBILITY
     49 #ifndef _GLIBCXX_PURE
     50 # define _GLIBCXX_PURE __attribute__ ((__pure__))
     51 #endif
     52 
     53 #ifndef _GLIBCXX_CONST
     54 # define _GLIBCXX_CONST __attribute__ ((__const__))
     55 #endif
     56 
     57 #ifndef _GLIBCXX_NORETURN
     58 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
     59 #endif
     60 
     61 // See below for C++
     62 #ifndef _GLIBCXX_NOTHROW
     63 # ifndef __cplusplus
     64 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
     65 # endif
     66 #endif
     67 
     68 // Macros for visibility attributes.
     69 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
     70 //   _GLIBCXX_VISIBILITY
     71 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
     72 
     73 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
     74 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
     75 #else
     76 // If this is not supplied by the OS-specific or CPU-specific
     77 // headers included below, it will be defined to an empty default.
     78 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
     79 #endif
     80 
     81 // Macros for deprecated attributes.
     82 //   _GLIBCXX_USE_DEPRECATED
     83 //   _GLIBCXX_DEPRECATED
     84 //   _GLIBCXX_DEPRECATED_SUGGEST( string-literal )
     85 //   _GLIBCXX11_DEPRECATED
     86 //   _GLIBCXX11_DEPRECATED_SUGGEST( string-literal )
     87 //   _GLIBCXX14_DEPRECATED
     88 //   _GLIBCXX14_DEPRECATED_SUGGEST( string-literal )
     89 //   _GLIBCXX17_DEPRECATED
     90 //   _GLIBCXX17_DEPRECATED_SUGGEST( string-literal )
     91 //   _GLIBCXX20_DEPRECATED( string-literal )
     92 //   _GLIBCXX20_DEPRECATED_SUGGEST( string-literal )
     93 #ifndef _GLIBCXX_USE_DEPRECATED
     94 # define _GLIBCXX_USE_DEPRECATED 1
     95 #endif
     96 
     97 #if defined(__DEPRECATED)
     98 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
     99 # define _GLIBCXX_DEPRECATED_SUGGEST(ALT) \
    100   __attribute__ ((__deprecated__ ("use '" ALT "' instead")))
    101 #else
    102 # define _GLIBCXX_DEPRECATED
    103 # define _GLIBCXX_DEPRECATED_SUGGEST(ALT)
    104 #endif
    105 
    106 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
    107 # define _GLIBCXX11_DEPRECATED _GLIBCXX_DEPRECATED
    108 # define _GLIBCXX11_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
    109 #else
    110 # define _GLIBCXX11_DEPRECATED
    111 # define _GLIBCXX11_DEPRECATED_SUGGEST(ALT)
    112 #endif
    113 
    114 #if defined(__DEPRECATED) && (__cplusplus >= 201402L)
    115 # define _GLIBCXX14_DEPRECATED _GLIBCXX_DEPRECATED
    116 # define _GLIBCXX14_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
    117 #else
    118 # define _GLIBCXX14_DEPRECATED
    119 # define _GLIBCXX14_DEPRECATED_SUGGEST(ALT)
    120 #endif
    121 
    122 #if defined(__DEPRECATED) && (__cplusplus >= 201703L)
    123 # define _GLIBCXX17_DEPRECATED [[__deprecated__]]
    124 # define _GLIBCXX17_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
    125 #else
    126 # define _GLIBCXX17_DEPRECATED
    127 # define _GLIBCXX17_DEPRECATED_SUGGEST(ALT)
    128 #endif
    129 
    130 #if defined(__DEPRECATED) && (__cplusplus >= 202002L)
    131 # define _GLIBCXX20_DEPRECATED(MSG) [[deprecated(MSG)]]
    132 # define _GLIBCXX20_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
    133 #else
    134 # define _GLIBCXX20_DEPRECATED(MSG)
    135 # define _GLIBCXX20_DEPRECATED_SUGGEST(ALT)
    136 #endif
    137 
    138 // Macros for ABI tag attributes.
    139 #ifndef _GLIBCXX_ABI_TAG_CXX11
    140 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
    141 #endif
    142 
    143 // Macro to warn about unused results.
    144 #if __cplusplus >= 201703L
    145 # define _GLIBCXX_NODISCARD [[__nodiscard__]]
    146 #else
    147 # define _GLIBCXX_NODISCARD
    148 #endif
    149 
    150 
    151 
    152 #if __cplusplus
    153 
    154 // Macro for constexpr, to support in mixed 03/0x mode.
    155 #ifndef _GLIBCXX_CONSTEXPR
    156 # if __cplusplus >= 201103L
    157 #  define _GLIBCXX_CONSTEXPR constexpr
    158 #  define _GLIBCXX_USE_CONSTEXPR constexpr
    159 # else
    160 #  define _GLIBCXX_CONSTEXPR
    161 #  define _GLIBCXX_USE_CONSTEXPR const
    162 # endif
    163 #endif
    164 
    165 #ifndef _GLIBCXX14_CONSTEXPR
    166 # if __cplusplus >= 201402L
    167 #  define _GLIBCXX14_CONSTEXPR constexpr
    168 # else
    169 #  define _GLIBCXX14_CONSTEXPR
    170 # endif
    171 #endif
    172 
    173 #ifndef _GLIBCXX17_CONSTEXPR
    174 # if __cplusplus >= 201703L
    175 #  define _GLIBCXX17_CONSTEXPR constexpr
    176 # else
    177 #  define _GLIBCXX17_CONSTEXPR
    178 # endif
    179 #endif
    180 
    181 #ifndef _GLIBCXX20_CONSTEXPR
    182 # if __cplusplus >= 202002L
    183 #  define _GLIBCXX20_CONSTEXPR constexpr
    184 # else
    185 #  define _GLIBCXX20_CONSTEXPR
    186 # endif
    187 #endif
    188 
    189 #ifndef _GLIBCXX23_CONSTEXPR
    190 # if __cplusplus >= 202100L
    191 #  define _GLIBCXX23_CONSTEXPR constexpr
    192 # else
    193 #  define _GLIBCXX23_CONSTEXPR
    194 # endif
    195 #endif
    196 
    197 #ifndef _GLIBCXX17_INLINE
    198 # if __cplusplus >= 201703L
    199 #  define _GLIBCXX17_INLINE inline
    200 # else
    201 #  define _GLIBCXX17_INLINE
    202 # endif
    203 #endif
    204 
    205 // Macro for noexcept, to support in mixed 03/0x mode.
    206 #ifndef _GLIBCXX_NOEXCEPT
    207 # if __cplusplus >= 201103L
    208 #  define _GLIBCXX_NOEXCEPT noexcept
    209 #  define _GLIBCXX_NOEXCEPT_IF(...) noexcept(__VA_ARGS__)
    210 #  define _GLIBCXX_USE_NOEXCEPT noexcept
    211 #  define _GLIBCXX_THROW(_EXC)
    212 # else
    213 #  define _GLIBCXX_NOEXCEPT
    214 #  define _GLIBCXX_NOEXCEPT_IF(...)
    215 #  define _GLIBCXX_USE_NOEXCEPT throw()
    216 #  define _GLIBCXX_THROW(_EXC) throw(_EXC)
    217 # endif
    218 #endif
    219 
    220 #ifndef _GLIBCXX_NOTHROW
    221 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
    222 #endif
    223 
    224 #ifndef _GLIBCXX_THROW_OR_ABORT
    225 # if __cpp_exceptions
    226 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
    227 # else
    228 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
    229 # endif
    230 #endif
    231 
    232 #if __cpp_noexcept_function_type
    233 #define _GLIBCXX_NOEXCEPT_PARM , bool _NE
    234 #define _GLIBCXX_NOEXCEPT_QUAL noexcept (_NE)
    235 #else
    236 #define _GLIBCXX_NOEXCEPT_PARM
    237 #define _GLIBCXX_NOEXCEPT_QUAL
    238 #endif
    239 
    240 // Macro for extern template, ie controlling template linkage via use
    241 // of extern keyword on template declaration. As documented in the g++
    242 // manual, it inhibits all implicit instantiations and is used
    243 // throughout the library to avoid multiple weak definitions for
    244 // required types that are already explicitly instantiated in the
    245 // library binary. This substantially reduces the binary size of
    246 // resulting executables.
    247 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
    248 // templates only in basic_string, thus activating its debug-mode
    249 // checks even at -O0.
    250 # define _GLIBCXX_EXTERN_TEMPLATE 1
    251 
    252 /*
    253   Outline of libstdc++ namespaces.
    254 
    255   namespace std
    256   {
    257     namespace __debug { }
    258     namespace __parallel { }
    259     namespace __cxx1998 { }
    260 
    261     namespace __detail {
    262       namespace __variant { }				// C++17
    263     }
    264 
    265     namespace rel_ops { }
    266 
    267     namespace tr1
    268     {
    269       namespace placeholders { }
    270       namespace regex_constants { }
    271       namespace __detail { }
    272     }
    273 
    274     namespace tr2 { }
    275 
    276     namespace decimal { }
    277 
    278     namespace chrono { }				// C++11
    279     namespace placeholders { }				// C++11
    280     namespace regex_constants { }			// C++11
    281     namespace this_thread { }				// C++11
    282     inline namespace literals {				// C++14
    283       inline namespace chrono_literals { }		// C++14
    284       inline namespace complex_literals { }		// C++14
    285       inline namespace string_literals { }		// C++14
    286       inline namespace string_view_literals { }		// C++17
    287     }
    288   }
    289 
    290   namespace abi { }
    291 
    292   namespace __gnu_cxx
    293   {
    294     namespace __detail { }
    295   }
    296 
    297   For full details see:
    298   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
    299 */
    300 namespace std
    301 {
    302   typedef __SIZE_TYPE__ 	size_t;
    303   typedef __PTRDIFF_TYPE__	ptrdiff_t;
    304 
    305 #if __cplusplus >= 201103L
    306   typedef decltype(nullptr)	nullptr_t;
    307 #endif
    308 
    309 #pragma GCC visibility push(default)
    310   // This allows the library to terminate without including all of <exception>
    311   // and without making the declaration of std::terminate visible to users.
    312   extern "C++" __attribute__ ((__noreturn__, __always_inline__))
    313   inline void __terminate() _GLIBCXX_USE_NOEXCEPT
    314   {
    315     void terminate() _GLIBCXX_USE_NOEXCEPT __attribute__ ((__noreturn__));
    316     terminate();
    317   }
    318 #pragma GCC visibility pop
    319 }
    320 
    321 # define _GLIBCXX_USE_DUAL_ABI 1
    322 
    323 #if ! _GLIBCXX_USE_DUAL_ABI
    324 // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
    325 # undef _GLIBCXX_USE_CXX11_ABI
    326 #endif
    327 
    328 #ifndef _GLIBCXX_USE_CXX11_ABI
    329 # define _GLIBCXX_USE_CXX11_ABI 1
    330 #endif
    331 
    332 #if _GLIBCXX_USE_CXX11_ABI
    333 namespace std
    334 {
    335   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
    336 }
    337 namespace __gnu_cxx
    338 {
    339   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
    340 }
    341 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11::
    342 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 {
    343 # define _GLIBCXX_END_NAMESPACE_CXX11 }
    344 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11
    345 #else
    346 # define _GLIBCXX_NAMESPACE_CXX11
    347 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11
    348 # define _GLIBCXX_END_NAMESPACE_CXX11
    349 # define _GLIBCXX_DEFAULT_ABI_TAG
    350 #endif
    351 
    352 // Non-zero if inline namespaces are used for versioning the entire library.
    353 # define _GLIBCXX_INLINE_VERSION 0
    354 
    355 #if _GLIBCXX_INLINE_VERSION
    356 // Inline namespace for symbol versioning of (nearly) everything in std.
    357 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __8 {
    358 # define _GLIBCXX_END_NAMESPACE_VERSION }
    359 // Unused when everything in std is versioned anyway.
    360 # define _GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE(X)
    361 # define _GLIBCXX_END_INLINE_ABI_NAMESPACE(X)
    362 
    363 namespace std
    364 {
    365 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
    366 #if __cplusplus >= 201402L
    367   inline namespace literals {
    368     inline namespace chrono_literals { }
    369     inline namespace complex_literals { }
    370     inline namespace string_literals { }
    371 #if __cplusplus > 201402L
    372     inline namespace string_view_literals { }
    373 #endif // C++17
    374   }
    375 #endif // C++14
    376 _GLIBCXX_END_NAMESPACE_VERSION
    377 }
    378 
    379 namespace __gnu_cxx
    380 {
    381 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
    382 _GLIBCXX_END_NAMESPACE_VERSION
    383 }
    384 
    385 #else
    386 // Unused.
    387 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
    388 # define _GLIBCXX_END_NAMESPACE_VERSION
    389 // Used to version individual components, e.g. std::_V2::error_category.
    390 # define _GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE(X) inline namespace X {
    391 # define _GLIBCXX_END_INLINE_ABI_NAMESPACE(X)   } // inline namespace X
    392 #endif
    393 
    394 // Inline namespaces for special modes: debug, parallel.
    395 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL)
    396 namespace std
    397 {
    398 _GLIBCXX_BEGIN_NAMESPACE_VERSION
    399 
    400   // Non-inline namespace for components replaced by alternates in active mode.
    401   namespace __cxx1998
    402   {
    403 # if _GLIBCXX_USE_CXX11_ABI
    404   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
    405 # endif
    406   }
    407 
    408 _GLIBCXX_END_NAMESPACE_VERSION
    409 
    410   // Inline namespace for debug mode.
    411 # ifdef _GLIBCXX_DEBUG
    412   inline namespace __debug { }
    413 # endif
    414 
    415   // Inline namespaces for parallel mode.
    416 # ifdef _GLIBCXX_PARALLEL
    417   inline namespace __parallel { }
    418 # endif
    419 }
    420 
    421 // Check for invalid usage and unsupported mixed-mode use.
    422 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
    423 #  error illegal use of multiple inlined namespaces
    424 # endif
    425 
    426 // Check for invalid use due to lack for weak symbols.
    427 # if __NO_INLINE__ && !__GXX_WEAK__
    428 #  warning currently using inlined namespace mode which may fail \
    429    without inlining due to lack of weak symbols
    430 # endif
    431 #endif
    432 
    433 // Macros for namespace scope. Either namespace std:: or the name
    434 // of some nested namespace within it corresponding to the active mode.
    435 // _GLIBCXX_STD_A
    436 // _GLIBCXX_STD_C
    437 //
    438 // Macros for opening/closing conditional namespaces.
    439 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
    440 // _GLIBCXX_END_NAMESPACE_ALGO
    441 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
    442 // _GLIBCXX_END_NAMESPACE_CONTAINER
    443 #if defined(_GLIBCXX_DEBUG)
    444 # define _GLIBCXX_STD_C __cxx1998
    445 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
    446 	 namespace _GLIBCXX_STD_C {
    447 # define _GLIBCXX_END_NAMESPACE_CONTAINER }
    448 #else
    449 # define _GLIBCXX_STD_C std
    450 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
    451 # define _GLIBCXX_END_NAMESPACE_CONTAINER
    452 #endif
    453 
    454 #ifdef _GLIBCXX_PARALLEL
    455 # define _GLIBCXX_STD_A __cxx1998
    456 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
    457 	 namespace _GLIBCXX_STD_A {
    458 # define _GLIBCXX_END_NAMESPACE_ALGO }
    459 #else
    460 # define _GLIBCXX_STD_A std
    461 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
    462 # define _GLIBCXX_END_NAMESPACE_ALGO
    463 #endif
    464 
    465 // GLIBCXX_ABI Deprecated
    466 // Define if compatibility should be provided for -mlong-double-64.
    467 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
    468 
    469 // Define if compatibility should be provided for alternative 128-bit long
    470 // double formats. Not possible for Clang until __ibm128 is supported.
    471 #ifndef __clang__
    472 #undef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT
    473 #endif
    474 
    475 // Inline namespaces for long double 128 modes.
    476 #if defined _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT \
    477   && defined __LONG_DOUBLE_IEEE128__
    478 namespace std
    479 {
    480   // Namespaces for 128-bit IEEE long double format on 64-bit POWER LE.
    481   inline namespace __gnu_cxx_ieee128 { }
    482   inline namespace __gnu_cxx11_ieee128 { }
    483 }
    484 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ieee128::
    485 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ieee128 {
    486 # define _GLIBCXX_END_NAMESPACE_LDBL }
    487 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 __gnu_cxx11_ieee128::
    488 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 namespace __gnu_cxx11_ieee128 {
    489 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 }
    490 
    491 #else // _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT && IEEE128
    492 
    493 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
    494 namespace std
    495 {
    496   inline namespace __gnu_cxx_ldbl128 { }
    497 }
    498 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
    499 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
    500 # define _GLIBCXX_END_NAMESPACE_LDBL }
    501 #else
    502 # define _GLIBCXX_NAMESPACE_LDBL
    503 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
    504 # define _GLIBCXX_END_NAMESPACE_LDBL
    505 #endif
    506 
    507 #if _GLIBCXX_USE_CXX11_ABI
    508 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11
    509 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11
    510 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11
    511 #else
    512 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL
    513 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL
    514 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL
    515 #endif
    516 
    517 #endif // _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT && IEEE128
    518 
    519 namespace std
    520 {
    521 #pragma GCC visibility push(default)
    522   // Internal version of std::is_constant_evaluated().
    523   // This can be used without checking if the compiler supports the feature.
    524   // The macro _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED can be used to check if
    525   // the compiler support is present to make this function work as expected.
    526   _GLIBCXX_CONSTEXPR inline bool
    527   __is_constant_evaluated() _GLIBCXX_NOEXCEPT
    528   {
    529 #if __cpp_if_consteval >= 202106L
    530 # define _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED 1
    531     if consteval { return true; } else { return false; }
    532 #elif __cplusplus >= 201103L && __has_builtin(__builtin_is_constant_evaluated)
    533 # define _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED 1
    534     return __builtin_is_constant_evaluated();
    535 #else
    536     return false;
    537 #endif
    538   }
    539 #pragma GCC visibility pop
    540 }
    541 
    542 // Debug Mode implies checking assertions.
    543 #if defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_ASSERTIONS)
    544 # define _GLIBCXX_ASSERTIONS 1
    545 #endif
    546 
    547 // Disable std::string explicit instantiation declarations in order to assert.
    548 #ifdef _GLIBCXX_ASSERTIONS
    549 # undef _GLIBCXX_EXTERN_TEMPLATE
    550 # define _GLIBCXX_EXTERN_TEMPLATE -1
    551 #endif
    552 
    553 
    554 #if _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED
    555 # define __glibcxx_constexpr_assert(cond) \
    556   if (std::__is_constant_evaluated() && !bool(cond))	\
    557     __builtin_unreachable() /* precondition violation detected! */
    558 #else
    559 # define __glibcxx_constexpr_assert(unevaluated)
    560 #endif
    561 
    562 #define _GLIBCXX_VERBOSE_ASSERT 1
    563 
    564 // Assert.
    565 #if defined(_GLIBCXX_ASSERTIONS) \
    566   || defined(_GLIBCXX_PARALLEL) || defined(_GLIBCXX_PARALLEL_ASSERTIONS)
    567 # ifdef _GLIBCXX_VERBOSE_ASSERT
    568 namespace std
    569 {
    570 #pragma GCC visibility push(default)
    571   // Avoid the use of assert, because we're trying to keep the <cassert>
    572   // include out of the mix.
    573   extern "C++" _GLIBCXX_NORETURN
    574   void
    575   __glibcxx_assert_fail(const char* __file, int __line,
    576 			const char* __function, const char* __condition)
    577   _GLIBCXX_NOEXCEPT;
    578 #pragma GCC visibility pop
    579 }
    580 #define __glibcxx_assert_impl(_Condition)				\
    581   if (__builtin_expect(!bool(_Condition), false))			\
    582   {									\
    583     __glibcxx_constexpr_assert(false);					\
    584     std::__glibcxx_assert_fail(__FILE__, __LINE__, __PRETTY_FUNCTION__,	\
    585 			       #_Condition);				\
    586   }
    587 # else // ! VERBOSE_ASSERT
    588 # define __glibcxx_assert_impl(_Condition)		\
    589   if (__builtin_expect(!bool(_Condition), false))	\
    590   {							\
    591     __glibcxx_constexpr_assert(false);			\
    592     __builtin_abort();					\
    593   }
    594 # endif
    595 #endif
    596 
    597 #if defined(_GLIBCXX_ASSERTIONS)
    598 # define __glibcxx_assert(cond) \
    599   do { __glibcxx_assert_impl(cond); } while (false)
    600 #else
    601 # define __glibcxx_assert(cond) \
    602   do { __glibcxx_constexpr_assert(cond); } while (false)
    603 #endif
    604 
    605 // Macro indicating that TSAN is in use.
    606 #if __SANITIZE_THREAD__
    607 #  define _GLIBCXX_TSAN 1
    608 #elif defined __has_feature
    609 # if __has_feature(thread_sanitizer)
    610 #  define _GLIBCXX_TSAN 1
    611 # endif
    612 #endif
    613 
    614 // Macros for race detectors.
    615 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
    616 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
    617 // atomic (lock-free) synchronization to race detectors:
    618 // the race detector will infer a happens-before arc from the former to the
    619 // latter when they share the same argument pointer.
    620 //
    621 // The most frequent use case for these macros (and the only case in the
    622 // current implementation of the library) is atomic reference counting:
    623 //   void _M_remove_reference()
    624 //   {
    625 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
    626 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
    627 //       {
    628 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
    629 //         _M_destroy(__a);
    630 //       }
    631 //   }
    632 // The annotations in this example tell the race detector that all memory
    633 // accesses occurred when the refcount was positive do not race with
    634 // memory accesses which occurred after the refcount became zero.
    635 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
    636 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
    637 #endif
    638 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
    639 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
    640 #endif
    641 
    642 // Macros for C linkage: define extern "C" linkage only when using C++.
    643 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
    644 # define _GLIBCXX_END_EXTERN_C }
    645 
    646 # define _GLIBCXX_USE_ALLOCATOR_NEW 1
    647 
    648 #ifdef __SIZEOF_INT128__
    649 #if ! defined __GLIBCXX_TYPE_INT_N_0 && ! defined __STRICT_ANSI__
    650 // If __int128 is supported, we expect __GLIBCXX_TYPE_INT_N_0 to be defined
    651 // unless the compiler is in strict mode. If it's not defined and the strict
    652 // macro is not defined, something is wrong.
    653 #warning "__STRICT_ANSI__ seems to have been undefined; this is not supported"
    654 #endif
    655 #endif
    656 
    657 #else // !__cplusplus
    658 # define _GLIBCXX_BEGIN_EXTERN_C
    659 # define _GLIBCXX_END_EXTERN_C
    660 #endif
    661 
    662 
    663 // First includes.
    664 
    665 // Pick up any OS-specific definitions.
    666 #include <bits/os_defines.h>
    667 
    668 // Pick up any CPU-specific definitions.
    669 #include <bits/cpu_defines.h>
    670 
    671 // If platform uses neither visibility nor psuedo-visibility,
    672 // specify empty default for namespace annotation macros.
    673 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
    674 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
    675 #endif
    676 
    677 // Certain function definitions that are meant to be overridable from
    678 // user code are decorated with this macro.  For some targets, this
    679 // macro causes these definitions to be weak.
    680 #ifndef _GLIBCXX_WEAK_DEFINITION
    681 # define _GLIBCXX_WEAK_DEFINITION
    682 #endif
    683 
    684 // By default, we assume that __GXX_WEAK__ also means that there is support
    685 // for declaring functions as weak while not defining such functions.  This
    686 // allows for referring to functions provided by other libraries (e.g.,
    687 // libitm) without depending on them if the respective features are not used.
    688 #ifndef _GLIBCXX_USE_WEAK_REF
    689 # define _GLIBCXX_USE_WEAK_REF __GXX_WEAK__
    690 #endif
    691 
    692 // Conditionally enable annotations for the Transactional Memory TS on C++11.
    693 // Most of the following conditions are due to limitations in the current
    694 // implementation.
    695 #if __cplusplus >= 201103L && _GLIBCXX_USE_CXX11_ABI			\
    696   && _GLIBCXX_USE_DUAL_ABI && __cpp_transactional_memory >= 201500L	\
    697   &&  !_GLIBCXX_FULLY_DYNAMIC_STRING && _GLIBCXX_USE_WEAK_REF		\
    698   && _GLIBCXX_USE_ALLOCATOR_NEW
    699 #define _GLIBCXX_TXN_SAFE transaction_safe
    700 #define _GLIBCXX_TXN_SAFE_DYN transaction_safe_dynamic
    701 #else
    702 #define _GLIBCXX_TXN_SAFE
    703 #define _GLIBCXX_TXN_SAFE_DYN
    704 #endif
    705 
    706 #if __cplusplus > 201402L
    707 // In C++17 mathematical special functions are in namespace std.
    708 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
    709 #elif __cplusplus >= 201103L && __STDCPP_WANT_MATH_SPEC_FUNCS__ != 0
    710 // For C++11 and C++14 they are in namespace std when requested.
    711 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
    712 #endif
    713 
    714 // The remainder of the prewritten config is automatic; all the
    715 // user hooks are listed above.
    716 
    717 // Create a boolean flag to be used to determine if --fast-math is set.
    718 #ifdef __FAST_MATH__
    719 # define _GLIBCXX_FAST_MATH 1
    720 #else
    721 # define _GLIBCXX_FAST_MATH 0
    722 #endif
    723 
    724 // This marks string literals in header files to be extracted for eventual
    725 // translation.  It is primarily used for messages in thrown exceptions; see
    726 // src/functexcept.cc.  We use __N because the more traditional _N is used
    727 // for something else under certain OSes (see BADNAMES).
    728 #define __N(msgid)     (msgid)
    729 
    730 // For example, <windows.h> is known to #define min and max as macros...
    731 #undef min
    732 #undef max
    733 
    734 // N.B. these _GLIBCXX_USE_C99_XXX macros are defined unconditionally
    735 // so they should be tested with #if not with #ifdef.
    736 #if __cplusplus >= 201103L
    737 # ifndef _GLIBCXX_USE_C99_MATH
    738 #  define _GLIBCXX_USE_C99_MATH _GLIBCXX11_USE_C99_MATH
    739 # endif
    740 # ifndef _GLIBCXX_USE_C99_COMPLEX
    741 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX11_USE_C99_COMPLEX
    742 # endif
    743 # ifndef _GLIBCXX_USE_C99_STDIO
    744 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX11_USE_C99_STDIO
    745 # endif
    746 # ifndef _GLIBCXX_USE_C99_STDLIB
    747 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX11_USE_C99_STDLIB
    748 # endif
    749 # ifndef _GLIBCXX_USE_C99_WCHAR
    750 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX11_USE_C99_WCHAR
    751 # endif
    752 #else
    753 # ifndef _GLIBCXX_USE_C99_MATH
    754 #  define _GLIBCXX_USE_C99_MATH _GLIBCXX98_USE_C99_MATH
    755 # endif
    756 # ifndef _GLIBCXX_USE_C99_COMPLEX
    757 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX98_USE_C99_COMPLEX
    758 # endif
    759 # ifndef _GLIBCXX_USE_C99_STDIO
    760 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX98_USE_C99_STDIO
    761 # endif
    762 # ifndef _GLIBCXX_USE_C99_STDLIB
    763 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX98_USE_C99_STDLIB
    764 # endif
    765 # ifndef _GLIBCXX_USE_C99_WCHAR
    766 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX98_USE_C99_WCHAR
    767 # endif
    768 #endif
    769 
    770 // Unless explicitly specified, enable char8_t extensions only if the core
    771 // language char8_t feature macro is defined.
    772 #ifndef _GLIBCXX_USE_CHAR8_T
    773 # ifdef __cpp_char8_t
    774 #  define _GLIBCXX_USE_CHAR8_T 1
    775 # endif
    776 #endif
    777 #ifdef _GLIBCXX_USE_CHAR8_T
    778 # define __cpp_lib_char8_t 201907L
    779 #endif
    780 
    781 /* Define if __float128 is supported on this host.  */
    782 #if defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__)
    783 /* For powerpc64 don't use __float128 when it's the same type as long double. */
    784 # if !(defined(_GLIBCXX_LONG_DOUBLE_ALT128_COMPAT) && defined(__LONG_DOUBLE_IEEE128__))
    785 #  undef _GLIBCXX_USE_FLOAT128
    786 # endif
    787 #endif
    788 
    789 // Define if float has the IEEE binary32 format.
    790 #if __FLT_MANT_DIG__ == 24 \
    791   && __FLT_MIN_EXP__ == -125 \
    792   && __FLT_MAX_EXP__ == 128
    793 # define _GLIBCXX_FLOAT_IS_IEEE_BINARY32 1
    794 #endif
    795 
    796 // Define if double has the IEEE binary64 format.
    797 #if __DBL_MANT_DIG__ == 53 \
    798   && __DBL_MIN_EXP__ == -1021 \
    799   && __DBL_MAX_EXP__ == 1024
    800 # define _GLIBCXX_DOUBLE_IS_IEEE_BINARY64 1
    801 #endif
    802 
    803 #ifdef __has_builtin
    804 # ifdef __is_identifier
    805 // Intel and older Clang require !__is_identifier for some built-ins:
    806 #  define _GLIBCXX_HAS_BUILTIN(B) __has_builtin(B) || ! __is_identifier(B)
    807 # else
    808 #  define _GLIBCXX_HAS_BUILTIN(B) __has_builtin(B)
    809 # endif
    810 #endif
    811 
    812 #if _GLIBCXX_HAS_BUILTIN(__has_unique_object_representations)
    813 # define _GLIBCXX_HAVE_BUILTIN_HAS_UNIQ_OBJ_REP 1
    814 #endif
    815 
    816 #if _GLIBCXX_HAS_BUILTIN(__is_aggregate)
    817 # define _GLIBCXX_HAVE_BUILTIN_IS_AGGREGATE 1
    818 #endif
    819 
    820 #if _GLIBCXX_HAS_BUILTIN(__is_same)
    821 #  define _GLIBCXX_HAVE_BUILTIN_IS_SAME 1
    822 #endif
    823 
    824 #if _GLIBCXX_HAS_BUILTIN(__builtin_launder)
    825 # define _GLIBCXX_HAVE_BUILTIN_LAUNDER 1
    826 #endif
    827 
    828 #undef _GLIBCXX_HAS_BUILTIN
    829 
    830 // Mark code that should be ignored by the compiler, but seen by Doxygen.
    831 #define _GLIBCXX_DOXYGEN_ONLY(X)
    832 
    833 // PSTL configuration
    834 
    835 #if __cplusplus >= 201703L
    836 // This header is not installed for freestanding:
    837 #if __has_include(<pstl/pstl_config.h>)
    838 // Preserved here so we have some idea which version of upstream we've pulled in
    839 // #define PSTL_VERSION 9000
    840 
    841 // For now this defaults to being based on the presence of Thread Building Blocks
    842 # ifndef _GLIBCXX_USE_TBB_PAR_BACKEND
    843 #  define _GLIBCXX_USE_TBB_PAR_BACKEND __has_include(<tbb/tbb.h>)
    844 # endif
    845 // This section will need some rework when a new (default) backend type is added
    846 # if _GLIBCXX_USE_TBB_PAR_BACKEND
    847 #  define _PSTL_PAR_BACKEND_TBB
    848 # else
    849 #  define _PSTL_PAR_BACKEND_SERIAL
    850 # endif
    851 
    852 # define _PSTL_ASSERT(_Condition) __glibcxx_assert(_Condition)
    853 # define _PSTL_ASSERT_MSG(_Condition, _Message) __glibcxx_assert(_Condition)
    854 
    855 #include <pstl/pstl_config.h>
    856 #endif // __has_include
    857 #endif // C++17
    858 
    859 // End of prewritten config; the settings discovered at configure time follow.
    860 /* config.h.  Generated from config.h.in by configure.  */
    861 /* config.h.in.  Generated from configure.ac by autoheader.  */
    862 
    863 /* Define to 1 if you have the `acosf' function. */
    864 #define _GLIBCXX_HAVE_ACOSF 1
    865 
    866 /* Define to 1 if you have the `acosl' function. */
    867 #define _GLIBCXX_HAVE_ACOSL 1
    868 
    869 /* Define to 1 if you have the `aligned_alloc' function. */
    870 #define _GLIBCXX_HAVE_ALIGNED_ALLOC 1
    871 
    872 /* Define if arc4random is available in <stdlib.h>. */
    873 #define _GLIBCXX_HAVE_ARC4RANDOM 1
    874 
    875 /* Define to 1 if you have the <arpa/inet.h> header file. */
    876 #define _GLIBCXX_HAVE_ARPA_INET_H 1
    877 
    878 /* Define to 1 if you have the `asinf' function. */
    879 #define _GLIBCXX_HAVE_ASINF 1
    880 
    881 /* Define to 1 if you have the `asinl' function. */
    882 #define _GLIBCXX_HAVE_ASINL 1
    883 
    884 /* Define to 1 if the target assembler supports .symver directive. */
    885 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
    886 
    887 /* Define to 1 if you have the `atan2f' function. */
    888 #define _GLIBCXX_HAVE_ATAN2F 1
    889 
    890 /* Define to 1 if you have the `atan2l' function. */
    891 #define _GLIBCXX_HAVE_ATAN2L 1
    892 
    893 /* Define to 1 if you have the `atanf' function. */
    894 #define _GLIBCXX_HAVE_ATANF 1
    895 
    896 /* Define to 1 if you have the `atanl' function. */
    897 #define _GLIBCXX_HAVE_ATANL 1
    898 
    899 /* Defined if shared_ptr reference counting should use atomic operations. */
    900 #define _GLIBCXX_HAVE_ATOMIC_LOCK_POLICY 1
    901 
    902 /* Define to 1 if you have the `at_quick_exit' function. */
    903 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
    904 
    905 /* Define to 1 if the target assembler supports thread-local storage. */
    906 /* #undef _GLIBCXX_HAVE_CC_TLS */
    907 
    908 /* Define to 1 if you have the `ceilf' function. */
    909 #define _GLIBCXX_HAVE_CEILF 1
    910 
    911 /* Define to 1 if you have the `ceill' function. */
    912 #define _GLIBCXX_HAVE_CEILL 1
    913 
    914 /* Define to 1 if you have the <complex.h> header file. */
    915 #define _GLIBCXX_HAVE_COMPLEX_H 1
    916 
    917 /* Define to 1 if you have the `cosf' function. */
    918 #define _GLIBCXX_HAVE_COSF 1
    919 
    920 /* Define to 1 if you have the `coshf' function. */
    921 #define _GLIBCXX_HAVE_COSHF 1
    922 
    923 /* Define to 1 if you have the `coshl' function. */
    924 #define _GLIBCXX_HAVE_COSHL 1
    925 
    926 /* Define to 1 if you have the `cosl' function. */
    927 #define _GLIBCXX_HAVE_COSL 1
    928 
    929 /* Define to 1 if you have the declaration of `strnlen', and to 0 if you
    930    don't. */
    931 #define _GLIBCXX_HAVE_DECL_STRNLEN 1
    932 
    933 /* Define to 1 if you have the <dirent.h> header file. */
    934 #define _GLIBCXX_HAVE_DIRENT_H 1
    935 
    936 /* Define if dirfd is available in <dirent.h>. */
    937 /* #undef _GLIBCXX_HAVE_DIRFD */
    938 
    939 /* Define to 1 if you have the <dlfcn.h> header file. */
    940 #define _GLIBCXX_HAVE_DLFCN_H 1
    941 
    942 /* Define to 1 if you have the <endian.h> header file. */
    943 #define _GLIBCXX_HAVE_ENDIAN_H 1
    944 
    945 /* Define to 1 if GCC 4.6 supported std::exception_ptr for the target */
    946 #define _GLIBCXX_HAVE_EXCEPTION_PTR_SINCE_GCC46 1
    947 
    948 /* Define to 1 if you have the <execinfo.h> header file. */
    949 #define _GLIBCXX_HAVE_EXECINFO_H 1
    950 
    951 /* Define to 1 if you have the `expf' function. */
    952 #define _GLIBCXX_HAVE_EXPF 1
    953 
    954 /* Define to 1 if you have the `expl' function. */
    955 #define _GLIBCXX_HAVE_EXPL 1
    956 
    957 /* Define to 1 if you have the `fabsf' function. */
    958 #define _GLIBCXX_HAVE_FABSF 1
    959 
    960 /* Define to 1 if you have the `fabsl' function. */
    961 #define _GLIBCXX_HAVE_FABSL 1
    962 
    963 /* Define to 1 if you have the <fcntl.h> header file. */
    964 #define _GLIBCXX_HAVE_FCNTL_H 1
    965 
    966 /* Define if fdopendir is available in <dirent.h>. */
    967 #define _GLIBCXX_HAVE_FDOPENDIR 1
    968 
    969 /* Define to 1 if you have the <fenv.h> header file. */
    970 #define _GLIBCXX_HAVE_FENV_H 1
    971 
    972 /* Define to 1 if you have the `finite' function. */
    973 #define _GLIBCXX_HAVE_FINITE 1
    974 
    975 /* Define to 1 if you have the `finitef' function. */
    976 #define _GLIBCXX_HAVE_FINITEF 1
    977 
    978 /* Define to 1 if you have the `finitel' function. */
    979 /* #undef _GLIBCXX_HAVE_FINITEL */
    980 
    981 /* Define to 1 if you have the <float.h> header file. */
    982 #define _GLIBCXX_HAVE_FLOAT_H 1
    983 
    984 /* Define to 1 if you have the `floorf' function. */
    985 #define _GLIBCXX_HAVE_FLOORF 1
    986 
    987 /* Define to 1 if you have the `floorl' function. */
    988 #define _GLIBCXX_HAVE_FLOORL 1
    989 
    990 /* Define to 1 if you have the `fmodf' function. */
    991 #define _GLIBCXX_HAVE_FMODF 1
    992 
    993 /* Define to 1 if you have the `fmodl' function. */
    994 #define _GLIBCXX_HAVE_FMODL 1
    995 
    996 /* Define to 1 if you have the `fpclass' function. */
    997 /* #undef _GLIBCXX_HAVE_FPCLASS */
    998 
    999 /* Define to 1 if you have the <fp.h> header file. */
   1000 /* #undef _GLIBCXX_HAVE_FP_H */
   1001 
   1002 /* Define to 1 if you have the `frexpf' function. */
   1003 #define _GLIBCXX_HAVE_FREXPF 1
   1004 
   1005 /* Define to 1 if you have the `frexpl' function. */
   1006 #define _GLIBCXX_HAVE_FREXPL 1
   1007 
   1008 /* Define if getentropy is available in <unistd.h>. */
   1009 #define _GLIBCXX_HAVE_GETENTROPY 1
   1010 
   1011 /* Define if _Unwind_GetIPInfo is available. */
   1012 #define _GLIBCXX_HAVE_GETIPINFO 1
   1013 
   1014 /* Define if gets is available in <stdio.h> before C++14. */
   1015 #define _GLIBCXX_HAVE_GETS 1
   1016 
   1017 /* Define to 1 if you have the `hypot' function. */
   1018 #define _GLIBCXX_HAVE_HYPOT 1
   1019 
   1020 /* Define to 1 if you have the `hypotf' function. */
   1021 #define _GLIBCXX_HAVE_HYPOTF 1
   1022 
   1023 /* Define to 1 if you have the `hypotl' function. */
   1024 #define _GLIBCXX_HAVE_HYPOTL 1
   1025 
   1026 /* Define if you have the iconv() function. */
   1027 #define _GLIBCXX_HAVE_ICONV 1
   1028 
   1029 /* Define to 1 if you have the <ieeefp.h> header file. */
   1030 #define _GLIBCXX_HAVE_IEEEFP_H 1
   1031 
   1032 /* Define to 1 if you have the <inttypes.h> header file. */
   1033 #define _GLIBCXX_HAVE_INTTYPES_H 1
   1034 
   1035 /* Define to 1 if you have the `isinf' function. */
   1036 #define _GLIBCXX_HAVE_ISINF 1
   1037 
   1038 /* Define to 1 if you have the `isinff' function. */
   1039 #define _GLIBCXX_HAVE_ISINFF 1
   1040 
   1041 /* Define to 1 if you have the `isinfl' function. */
   1042 /* #undef _GLIBCXX_HAVE_ISINFL */
   1043 
   1044 /* Define to 1 if you have the `isnan' function. */
   1045 #define _GLIBCXX_HAVE_ISNAN 1
   1046 
   1047 /* Define to 1 if you have the `isnanf' function. */
   1048 #define _GLIBCXX_HAVE_ISNANF 1
   1049 
   1050 /* Define to 1 if you have the `isnanl' function. */
   1051 /* #undef _GLIBCXX_HAVE_ISNANL */
   1052 
   1053 /* Defined if iswblank exists. */
   1054 #define _GLIBCXX_HAVE_ISWBLANK 1
   1055 
   1056 /* Define if LC_MESSAGES is available in <locale.h>. */
   1057 #define _GLIBCXX_HAVE_LC_MESSAGES 1
   1058 
   1059 /* Define to 1 if you have the `ldexpf' function. */
   1060 #define _GLIBCXX_HAVE_LDEXPF 1
   1061 
   1062 /* Define to 1 if you have the `ldexpl' function. */
   1063 #define _GLIBCXX_HAVE_LDEXPL 1
   1064 
   1065 /* Define to 1 if you have the <libintl.h> header file. */
   1066 /* #undef _GLIBCXX_HAVE_LIBINTL_H */
   1067 
   1068 /* Only used in build directory testsuite_hooks.h. */
   1069 #define _GLIBCXX_HAVE_LIMIT_AS 1
   1070 
   1071 /* Only used in build directory testsuite_hooks.h. */
   1072 #define _GLIBCXX_HAVE_LIMIT_DATA 1
   1073 
   1074 /* Only used in build directory testsuite_hooks.h. */
   1075 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
   1076 
   1077 /* Only used in build directory testsuite_hooks.h. */
   1078 #define _GLIBCXX_HAVE_LIMIT_RSS 1
   1079 
   1080 /* Only used in build directory testsuite_hooks.h. */
   1081 #define _GLIBCXX_HAVE_LIMIT_VMEM 1
   1082 
   1083 /* Define if link is available in <unistd.h>. */
   1084 #define _GLIBCXX_HAVE_LINK 1
   1085 
   1086 /* Define to 1 if you have the <link.h> header file. */
   1087 #define _GLIBCXX_HAVE_LINK_H 1
   1088 
   1089 /* Define if futex syscall is available. */
   1090 /* #undef _GLIBCXX_HAVE_LINUX_FUTEX */
   1091 
   1092 /* Define to 1 if you have the <linux/random.h> header file. */
   1093 /* #undef _GLIBCXX_HAVE_LINUX_RANDOM_H */
   1094 
   1095 /* Define to 1 if you have the <linux/types.h> header file. */
   1096 /* #undef _GLIBCXX_HAVE_LINUX_TYPES_H */
   1097 
   1098 /* Define to 1 if you have the <locale.h> header file. */
   1099 #define _GLIBCXX_HAVE_LOCALE_H 1
   1100 
   1101 /* Define to 1 if you have the `log10f' function. */
   1102 #define _GLIBCXX_HAVE_LOG10F 1
   1103 
   1104 /* Define to 1 if you have the `log10l' function. */
   1105 #define _GLIBCXX_HAVE_LOG10L 1
   1106 
   1107 /* Define to 1 if you have the `logf' function. */
   1108 #define _GLIBCXX_HAVE_LOGF 1
   1109 
   1110 /* Define to 1 if you have the `logl' function. */
   1111 #define _GLIBCXX_HAVE_LOGL 1
   1112 
   1113 /* Define to 1 if you have the <machine/endian.h> header file. */
   1114 #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1
   1115 
   1116 /* Define to 1 if you have the <machine/param.h> header file. */
   1117 #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1
   1118 
   1119 /* Define if mbstate_t exists in wchar.h. */
   1120 #define _GLIBCXX_HAVE_MBSTATE_T 1
   1121 
   1122 /* Define to 1 if you have the `memalign' function. */
   1123 /* #undef _GLIBCXX_HAVE_MEMALIGN */
   1124 
   1125 /* Define to 1 if you have the <memory.h> header file. */
   1126 #define _GLIBCXX_HAVE_MEMORY_H 1
   1127 
   1128 /* Define to 1 if you have the `modf' function. */
   1129 #define _GLIBCXX_HAVE_MODF 1
   1130 
   1131 /* Define to 1 if you have the `modff' function. */
   1132 #define _GLIBCXX_HAVE_MODFF 1
   1133 
   1134 /* Define to 1 if you have the `modfl' function. */
   1135 #define _GLIBCXX_HAVE_MODFL 1
   1136 
   1137 /* Define to 1 if you have the <nan.h> header file. */
   1138 /* #undef _GLIBCXX_HAVE_NAN_H */
   1139 
   1140 /* Define to 1 if you have the <netdb.h> header file. */
   1141 #define _GLIBCXX_HAVE_NETDB_H 1
   1142 
   1143 /* Define to 1 if you have the <netinet/in.h> header file. */
   1144 #define _GLIBCXX_HAVE_NETINET_IN_H 1
   1145 
   1146 /* Define to 1 if you have the <netinet/tcp.h> header file. */
   1147 #define _GLIBCXX_HAVE_NETINET_TCP_H 1
   1148 
   1149 /* Define if <math.h> defines obsolete isinf function. */
   1150 /* #undef _GLIBCXX_HAVE_OBSOLETE_ISINF */
   1151 
   1152 /* Define if <math.h> defines obsolete isnan function. */
   1153 /* #undef _GLIBCXX_HAVE_OBSOLETE_ISNAN */
   1154 
   1155 /* Define if openat is available in <fcntl.h>. */
   1156 #define _GLIBCXX_HAVE_OPENAT 1
   1157 
   1158 /* Define if O_NONBLOCK is defined in <fcntl.h> */
   1159 #define _GLIBCXX_HAVE_O_NONBLOCK 1
   1160 
   1161 /* Define if poll is available in <poll.h>. */
   1162 #define _GLIBCXX_HAVE_POLL 1
   1163 
   1164 /* Define to 1 if you have the <poll.h> header file. */
   1165 #define _GLIBCXX_HAVE_POLL_H 1
   1166 
   1167 /* Define to 1 if you have the `posix_memalign' function. */
   1168 #define _GLIBCXX_HAVE_POSIX_MEMALIGN 1
   1169 
   1170 /* Define to 1 if POSIX Semaphores with sem_timedwait are available in
   1171    <semaphore.h>. */
   1172 /* #undef _GLIBCXX_HAVE_POSIX_SEMAPHORE */
   1173 
   1174 /* Define to 1 if you have the `powf' function. */
   1175 #define _GLIBCXX_HAVE_POWF 1
   1176 
   1177 /* Define to 1 if you have the `powl' function. */
   1178 #define _GLIBCXX_HAVE_POWL 1
   1179 
   1180 /* Define to 1 if you have the `qfpclass' function. */
   1181 /* #undef _GLIBCXX_HAVE_QFPCLASS */
   1182 
   1183 /* Define to 1 if you have the `quick_exit' function. */
   1184 #define _GLIBCXX_HAVE_QUICK_EXIT 1
   1185 
   1186 /* Define if readlink is available in <unistd.h>. */
   1187 #define _GLIBCXX_HAVE_READLINK 1
   1188 
   1189 /* Define to 1 if you have the `secure_getenv' function. */
   1190 /* #undef _GLIBCXX_HAVE_SECURE_GETENV */
   1191 
   1192 /* Define to 1 if you have the `setenv' function. */
   1193 #define _GLIBCXX_HAVE_SETENV 1
   1194 
   1195 /* Define to 1 if you have the `sincos' function. */
   1196 #define _GLIBCXX_HAVE_SINCOS 1
   1197 
   1198 /* Define to 1 if you have the `sincosf' function. */
   1199 #define _GLIBCXX_HAVE_SINCOSF 1
   1200 
   1201 /* Define to 1 if you have the `sincosl' function. */
   1202 #define _GLIBCXX_HAVE_SINCOSL 1
   1203 
   1204 /* Define to 1 if you have the `sinf' function. */
   1205 #define _GLIBCXX_HAVE_SINF 1
   1206 
   1207 /* Define to 1 if you have the `sinhf' function. */
   1208 #define _GLIBCXX_HAVE_SINHF 1
   1209 
   1210 /* Define to 1 if you have the `sinhl' function. */
   1211 #define _GLIBCXX_HAVE_SINHL 1
   1212 
   1213 /* Define to 1 if you have the `sinl' function. */
   1214 #define _GLIBCXX_HAVE_SINL 1
   1215 
   1216 /* Defined if sleep exists. */
   1217 /* #undef _GLIBCXX_HAVE_SLEEP */
   1218 
   1219 /* Define to 1 if you have the `sockatmark' function. */
   1220 #define _GLIBCXX_HAVE_SOCKATMARK 1
   1221 
   1222 /* Define to 1 if you have the `sqrtf' function. */
   1223 #define _GLIBCXX_HAVE_SQRTF 1
   1224 
   1225 /* Define to 1 if you have the `sqrtl' function. */
   1226 #define _GLIBCXX_HAVE_SQRTL 1
   1227 
   1228 /* Define if the <stacktrace> header is supported. */
   1229 /* #undef _GLIBCXX_HAVE_STACKTRACE */
   1230 
   1231 /* Define to 1 if you have the <stdalign.h> header file. */
   1232 #define _GLIBCXX_HAVE_STDALIGN_H 1
   1233 
   1234 /* Define to 1 if you have the <stdbool.h> header file. */
   1235 #define _GLIBCXX_HAVE_STDBOOL_H 1
   1236 
   1237 /* Define to 1 if you have the <stdint.h> header file. */
   1238 #define _GLIBCXX_HAVE_STDINT_H 1
   1239 
   1240 /* Define to 1 if you have the <stdlib.h> header file. */
   1241 #define _GLIBCXX_HAVE_STDLIB_H 1
   1242 
   1243 /* Define if strerror_l is available in <string.h>. */
   1244 /* #undef _GLIBCXX_HAVE_STRERROR_L */
   1245 
   1246 /* Define if strerror_r is available in <string.h>. */
   1247 #define _GLIBCXX_HAVE_STRERROR_R 1
   1248 
   1249 /* Define to 1 if you have the <strings.h> header file. */
   1250 #define _GLIBCXX_HAVE_STRINGS_H 1
   1251 
   1252 /* Define to 1 if you have the <string.h> header file. */
   1253 #define _GLIBCXX_HAVE_STRING_H 1
   1254 
   1255 /* Define to 1 if you have the `strtof' function. */
   1256 #define _GLIBCXX_HAVE_STRTOF 1
   1257 
   1258 /* Define to 1 if you have the `strtold' function. */
   1259 #define _GLIBCXX_HAVE_STRTOLD 1
   1260 
   1261 /* Define to 1 if `d_type' is a member of `struct dirent'. */
   1262 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1
   1263 
   1264 /* Define if strxfrm_l is available in <string.h>. */
   1265 /* #undef _GLIBCXX_HAVE_STRXFRM_L */
   1266 
   1267 /* Define if symlink is available in <unistd.h>. */
   1268 #define _GLIBCXX_HAVE_SYMLINK 1
   1269 
   1270 /* Define to 1 if the target runtime linker supports binding the same symbol
   1271    to different versions. */
   1272 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
   1273 
   1274 /* Define to 1 if you have the <sys/filio.h> header file. */
   1275 #define _GLIBCXX_HAVE_SYS_FILIO_H 1
   1276 
   1277 /* Define to 1 if you have the <sys/ioctl.h> header file. */
   1278 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
   1279 
   1280 /* Define to 1 if you have the <sys/ipc.h> header file. */
   1281 #define _GLIBCXX_HAVE_SYS_IPC_H 1
   1282 
   1283 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
   1284 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
   1285 
   1286 /* Define to 1 if you have the <sys/machine.h> header file. */
   1287 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
   1288 
   1289 /* Define to 1 if you have the <sys/mman.h> header file. */
   1290 /* #undef _GLIBCXX_HAVE_SYS_MMAN_H */
   1291 
   1292 /* Define to 1 if you have the <sys/param.h> header file. */
   1293 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
   1294 
   1295 /* Define to 1 if you have the <sys/resource.h> header file. */
   1296 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
   1297 
   1298 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
   1299 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
   1300 
   1301 /* Define to 1 if you have the <sys/sem.h> header file. */
   1302 #define _GLIBCXX_HAVE_SYS_SEM_H 1
   1303 
   1304 /* Define to 1 if you have the <sys/socket.h> header file. */
   1305 #define _GLIBCXX_HAVE_SYS_SOCKET_H 1
   1306 
   1307 /* Define to 1 if you have the <sys/statvfs.h> header file. */
   1308 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1
   1309 
   1310 /* Define to 1 if you have the <sys/stat.h> header file. */
   1311 #define _GLIBCXX_HAVE_SYS_STAT_H 1
   1312 
   1313 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
   1314 /* #undef _GLIBCXX_HAVE_SYS_SYSINFO_H */
   1315 
   1316 /* Define to 1 if you have the <sys/time.h> header file. */
   1317 #define _GLIBCXX_HAVE_SYS_TIME_H 1
   1318 
   1319 /* Define to 1 if you have the <sys/types.h> header file. */
   1320 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
   1321 
   1322 /* Define to 1 if you have the <sys/uio.h> header file. */
   1323 #define _GLIBCXX_HAVE_SYS_UIO_H 1
   1324 
   1325 /* Define if S_IFREG is available in <sys/stat.h>. */
   1326 /* #undef _GLIBCXX_HAVE_S_IFREG */
   1327 
   1328 /* Define if S_ISREG is available in <sys/stat.h>. */
   1329 #define _GLIBCXX_HAVE_S_ISREG 1
   1330 
   1331 /* Define to 1 if you have the `tanf' function. */
   1332 #define _GLIBCXX_HAVE_TANF 1
   1333 
   1334 /* Define to 1 if you have the `tanhf' function. */
   1335 #define _GLIBCXX_HAVE_TANHF 1
   1336 
   1337 /* Define to 1 if you have the `tanhl' function. */
   1338 #define _GLIBCXX_HAVE_TANHL 1
   1339 
   1340 /* Define to 1 if you have the `tanl' function. */
   1341 #define _GLIBCXX_HAVE_TANL 1
   1342 
   1343 /* Define to 1 if you have the <tgmath.h> header file. */
   1344 #define _GLIBCXX_HAVE_TGMATH_H 1
   1345 
   1346 /* Define to 1 if you have the `timespec_get' function. */
   1347 #define _GLIBCXX_HAVE_TIMESPEC_GET 1
   1348 
   1349 /* Define to 1 if the target supports thread-local storage. */
   1350 #define _GLIBCXX_HAVE_TLS 1
   1351 
   1352 /* Define if truncate is available in <unistd.h>. */
   1353 #define _GLIBCXX_HAVE_TRUNCATE 1
   1354 
   1355 /* Define to 1 if you have the <uchar.h> header file. */
   1356 #define _GLIBCXX_HAVE_UCHAR_H 1
   1357 
   1358 /* Define to 1 if you have the <unistd.h> header file. */
   1359 #define _GLIBCXX_HAVE_UNISTD_H 1
   1360 
   1361 /* Define if unlinkat is available in <fcntl.h>. */
   1362 #define _GLIBCXX_HAVE_UNLINKAT 1
   1363 
   1364 /* Define to 1 if you have the `uselocale' function. */
   1365 /* #undef _GLIBCXX_HAVE_USELOCALE */
   1366 
   1367 /* Defined if usleep exists. */
   1368 /* #undef _GLIBCXX_HAVE_USLEEP */
   1369 
   1370 /* Define to 1 if you have the <utime.h> header file. */
   1371 #define _GLIBCXX_HAVE_UTIME_H 1
   1372 
   1373 /* Defined if vfwscanf exists. */
   1374 #define _GLIBCXX_HAVE_VFWSCANF 1
   1375 
   1376 /* Defined if vswscanf exists. */
   1377 #define _GLIBCXX_HAVE_VSWSCANF 1
   1378 
   1379 /* Defined if vwscanf exists. */
   1380 #define _GLIBCXX_HAVE_VWSCANF 1
   1381 
   1382 /* Define to 1 if you have the <wchar.h> header file. */
   1383 #define _GLIBCXX_HAVE_WCHAR_H 1
   1384 
   1385 /* Defined if wcstof exists. */
   1386 #define _GLIBCXX_HAVE_WCSTOF 1
   1387 
   1388 /* Define to 1 if you have the <wctype.h> header file. */
   1389 #define _GLIBCXX_HAVE_WCTYPE_H 1
   1390 
   1391 /* Defined if Sleep exists. */
   1392 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
   1393 
   1394 /* Define if writev is available in <sys/uio.h>. */
   1395 #define _GLIBCXX_HAVE_WRITEV 1
   1396 
   1397 /* Define to 1 if you have the <xlocale.h> header file. */
   1398 /* #undef _GLIBCXX_HAVE_XLOCALE_H */
   1399 
   1400 /* Define to 1 if you have the `_acosf' function. */
   1401 /* #undef _GLIBCXX_HAVE__ACOSF */
   1402 
   1403 /* Define to 1 if you have the `_acosl' function. */
   1404 /* #undef _GLIBCXX_HAVE__ACOSL */
   1405 
   1406 /* Define to 1 if you have the `_aligned_malloc' function. */
   1407 /* #undef _GLIBCXX_HAVE__ALIGNED_MALLOC */
   1408 
   1409 /* Define to 1 if you have the `_asinf' function. */
   1410 /* #undef _GLIBCXX_HAVE__ASINF */
   1411 
   1412 /* Define to 1 if you have the `_asinl' function. */
   1413 /* #undef _GLIBCXX_HAVE__ASINL */
   1414 
   1415 /* Define to 1 if you have the `_atan2f' function. */
   1416 /* #undef _GLIBCXX_HAVE__ATAN2F */
   1417 
   1418 /* Define to 1 if you have the `_atan2l' function. */
   1419 /* #undef _GLIBCXX_HAVE__ATAN2L */
   1420 
   1421 /* Define to 1 if you have the `_atanf' function. */
   1422 /* #undef _GLIBCXX_HAVE__ATANF */
   1423 
   1424 /* Define to 1 if you have the `_atanl' function. */
   1425 /* #undef _GLIBCXX_HAVE__ATANL */
   1426 
   1427 /* Define to 1 if you have the `_ceilf' function. */
   1428 /* #undef _GLIBCXX_HAVE__CEILF */
   1429 
   1430 /* Define to 1 if you have the `_ceill' function. */
   1431 /* #undef _GLIBCXX_HAVE__CEILL */
   1432 
   1433 /* Define to 1 if you have the `_cosf' function. */
   1434 /* #undef _GLIBCXX_HAVE__COSF */
   1435 
   1436 /* Define to 1 if you have the `_coshf' function. */
   1437 /* #undef _GLIBCXX_HAVE__COSHF */
   1438 
   1439 /* Define to 1 if you have the `_coshl' function. */
   1440 /* #undef _GLIBCXX_HAVE__COSHL */
   1441 
   1442 /* Define to 1 if you have the `_cosl' function. */
   1443 /* #undef _GLIBCXX_HAVE__COSL */
   1444 
   1445 /* Define to 1 if you have the `_expf' function. */
   1446 /* #undef _GLIBCXX_HAVE__EXPF */
   1447 
   1448 /* Define to 1 if you have the `_expl' function. */
   1449 /* #undef _GLIBCXX_HAVE__EXPL */
   1450 
   1451 /* Define to 1 if you have the `_fabsf' function. */
   1452 /* #undef _GLIBCXX_HAVE__FABSF */
   1453 
   1454 /* Define to 1 if you have the `_fabsl' function. */
   1455 /* #undef _GLIBCXX_HAVE__FABSL */
   1456 
   1457 /* Define to 1 if you have the `_finite' function. */
   1458 /* #undef _GLIBCXX_HAVE__FINITE */
   1459 
   1460 /* Define to 1 if you have the `_finitef' function. */
   1461 /* #undef _GLIBCXX_HAVE__FINITEF */
   1462 
   1463 /* Define to 1 if you have the `_finitel' function. */
   1464 /* #undef _GLIBCXX_HAVE__FINITEL */
   1465 
   1466 /* Define to 1 if you have the `_floorf' function. */
   1467 /* #undef _GLIBCXX_HAVE__FLOORF */
   1468 
   1469 /* Define to 1 if you have the `_floorl' function. */
   1470 /* #undef _GLIBCXX_HAVE__FLOORL */
   1471 
   1472 /* Define to 1 if you have the `_fmodf' function. */
   1473 /* #undef _GLIBCXX_HAVE__FMODF */
   1474 
   1475 /* Define to 1 if you have the `_fmodl' function. */
   1476 /* #undef _GLIBCXX_HAVE__FMODL */
   1477 
   1478 /* Define to 1 if you have the `_fpclass' function. */
   1479 /* #undef _GLIBCXX_HAVE__FPCLASS */
   1480 
   1481 /* Define to 1 if you have the `_frexpf' function. */
   1482 /* #undef _GLIBCXX_HAVE__FREXPF */
   1483 
   1484 /* Define to 1 if you have the `_frexpl' function. */
   1485 /* #undef _GLIBCXX_HAVE__FREXPL */
   1486 
   1487 /* Define to 1 if you have the `_hypot' function. */
   1488 /* #undef _GLIBCXX_HAVE__HYPOT */
   1489 
   1490 /* Define to 1 if you have the `_hypotf' function. */
   1491 /* #undef _GLIBCXX_HAVE__HYPOTF */
   1492 
   1493 /* Define to 1 if you have the `_hypotl' function. */
   1494 /* #undef _GLIBCXX_HAVE__HYPOTL */
   1495 
   1496 /* Define to 1 if you have the `_isinf' function. */
   1497 /* #undef _GLIBCXX_HAVE__ISINF */
   1498 
   1499 /* Define to 1 if you have the `_isinff' function. */
   1500 /* #undef _GLIBCXX_HAVE__ISINFF */
   1501 
   1502 /* Define to 1 if you have the `_isinfl' function. */
   1503 /* #undef _GLIBCXX_HAVE__ISINFL */
   1504 
   1505 /* Define to 1 if you have the `_isnan' function. */
   1506 /* #undef _GLIBCXX_HAVE__ISNAN */
   1507 
   1508 /* Define to 1 if you have the `_isnanf' function. */
   1509 /* #undef _GLIBCXX_HAVE__ISNANF */
   1510 
   1511 /* Define to 1 if you have the `_isnanl' function. */
   1512 /* #undef _GLIBCXX_HAVE__ISNANL */
   1513 
   1514 /* Define to 1 if you have the `_ldexpf' function. */
   1515 /* #undef _GLIBCXX_HAVE__LDEXPF */
   1516 
   1517 /* Define to 1 if you have the `_ldexpl' function. */
   1518 /* #undef _GLIBCXX_HAVE__LDEXPL */
   1519 
   1520 /* Define to 1 if you have the `_log10f' function. */
   1521 /* #undef _GLIBCXX_HAVE__LOG10F */
   1522 
   1523 /* Define to 1 if you have the `_log10l' function. */
   1524 /* #undef _GLIBCXX_HAVE__LOG10L */
   1525 
   1526 /* Define to 1 if you have the `_logf' function. */
   1527 /* #undef _GLIBCXX_HAVE__LOGF */
   1528 
   1529 /* Define to 1 if you have the `_logl' function. */
   1530 /* #undef _GLIBCXX_HAVE__LOGL */
   1531 
   1532 /* Define to 1 if you have the `_modf' function. */
   1533 /* #undef _GLIBCXX_HAVE__MODF */
   1534 
   1535 /* Define to 1 if you have the `_modff' function. */
   1536 /* #undef _GLIBCXX_HAVE__MODFF */
   1537 
   1538 /* Define to 1 if you have the `_modfl' function. */
   1539 /* #undef _GLIBCXX_HAVE__MODFL */
   1540 
   1541 /* Define to 1 if you have the `_powf' function. */
   1542 /* #undef _GLIBCXX_HAVE__POWF */
   1543 
   1544 /* Define to 1 if you have the `_powl' function. */
   1545 /* #undef _GLIBCXX_HAVE__POWL */
   1546 
   1547 /* Define to 1 if you have the `_qfpclass' function. */
   1548 /* #undef _GLIBCXX_HAVE__QFPCLASS */
   1549 
   1550 /* Define to 1 if you have the `_sincos' function. */
   1551 /* #undef _GLIBCXX_HAVE__SINCOS */
   1552 
   1553 /* Define to 1 if you have the `_sincosf' function. */
   1554 /* #undef _GLIBCXX_HAVE__SINCOSF */
   1555 
   1556 /* Define to 1 if you have the `_sincosl' function. */
   1557 /* #undef _GLIBCXX_HAVE__SINCOSL */
   1558 
   1559 /* Define to 1 if you have the `_sinf' function. */
   1560 /* #undef _GLIBCXX_HAVE__SINF */
   1561 
   1562 /* Define to 1 if you have the `_sinhf' function. */
   1563 /* #undef _GLIBCXX_HAVE__SINHF */
   1564 
   1565 /* Define to 1 if you have the `_sinhl' function. */
   1566 /* #undef _GLIBCXX_HAVE__SINHL */
   1567 
   1568 /* Define to 1 if you have the `_sinl' function. */
   1569 /* #undef _GLIBCXX_HAVE__SINL */
   1570 
   1571 /* Define to 1 if you have the `_sqrtf' function. */
   1572 /* #undef _GLIBCXX_HAVE__SQRTF */
   1573 
   1574 /* Define to 1 if you have the `_sqrtl' function. */
   1575 /* #undef _GLIBCXX_HAVE__SQRTL */
   1576 
   1577 /* Define to 1 if you have the `_tanf' function. */
   1578 /* #undef _GLIBCXX_HAVE__TANF */
   1579 
   1580 /* Define to 1 if you have the `_tanhf' function. */
   1581 /* #undef _GLIBCXX_HAVE__TANHF */
   1582 
   1583 /* Define to 1 if you have the `_tanhl' function. */
   1584 /* #undef _GLIBCXX_HAVE__TANHL */
   1585 
   1586 /* Define to 1 if you have the `_tanl' function. */
   1587 /* #undef _GLIBCXX_HAVE__TANL */
   1588 
   1589 /* Define to 1 if you have the `_wfopen' function. */
   1590 /* #undef _GLIBCXX_HAVE__WFOPEN */
   1591 
   1592 /* Define to 1 if you have the `__cxa_thread_atexit' function. */
   1593 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT 1
   1594 
   1595 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
   1596 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
   1597 
   1598 /* Define as const if the declaration of iconv() needs const. */
   1599 #define _GLIBCXX_ICONV_CONST
   1600 
   1601 /* Define to the sub-directory in which libtool stores uninstalled libraries.
   1602    */
   1603 #define _GLIBCXX_LT_OBJDIR ".libs/"
   1604 
   1605 /* Name of package */
   1606 /* #undef _GLIBCXX_PACKAGE */
   1607 
   1608 /* Define to the address where bug reports for this package should be sent. */
   1609 #define _GLIBCXX_PACKAGE_BUGREPORT ""
   1610 
   1611 /* Define to the full name of this package. */
   1612 #define _GLIBCXX_PACKAGE_NAME "package-unused"
   1613 
   1614 /* Define to the full name and version of this package. */
   1615 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
   1616 
   1617 /* Define to the one symbol short name of this package. */
   1618 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
   1619 
   1620 /* Define to the home page for this package. */
   1621 #define _GLIBCXX_PACKAGE_URL ""
   1622 
   1623 /* Define to the version of this package. */
   1624 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
   1625 
   1626 /* The size of `char', as computed by sizeof. */
   1627 /* #undef SIZEOF_CHAR */
   1628 
   1629 /* The size of `int', as computed by sizeof. */
   1630 /* #undef SIZEOF_INT */
   1631 
   1632 /* The size of `long', as computed by sizeof. */
   1633 /* #undef SIZEOF_LONG */
   1634 
   1635 /* The size of `short', as computed by sizeof. */
   1636 /* #undef SIZEOF_SHORT */
   1637 
   1638 /* The size of `void *', as computed by sizeof. */
   1639 /* #undef SIZEOF_VOID_P */
   1640 
   1641 /* Define to 1 if you have the ANSI C header files. */
   1642 #define _GLIBCXX_STDC_HEADERS 1
   1643 
   1644 /* Version number of package */
   1645 /* #undef _GLIBCXX_VERSION */
   1646 
   1647 /* Enable large inode numbers on Mac OS X 10.5.  */
   1648 #ifndef _GLIBCXX_DARWIN_USE_64_BIT_INODE
   1649 # define _GLIBCXX_DARWIN_USE_64_BIT_INODE 1
   1650 #endif
   1651 
   1652 /* Number of bits in a file offset, on hosts where this is settable. */
   1653 /* #undef _GLIBCXX_FILE_OFFSET_BITS */
   1654 
   1655 /* Define if C99 functions in <complex.h> should be used in <complex> for
   1656    C++11. Using compiler builtins for these functions requires corresponding
   1657    C99 library functions to be present. */
   1658 #define _GLIBCXX11_USE_C99_COMPLEX 1
   1659 
   1660 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
   1661    in namespace std for C++11. */
   1662 #define _GLIBCXX11_USE_C99_MATH 1
   1663 
   1664 /* Define if C99 functions or macros in <stdio.h> should be imported in
   1665    <cstdio> in namespace std for C++11. */
   1666 #define _GLIBCXX11_USE_C99_STDIO 1
   1667 
   1668 /* Define if C99 functions or macros in <stdlib.h> should be imported in
   1669    <cstdlib> in namespace std for C++11. */
   1670 #define _GLIBCXX11_USE_C99_STDLIB 1
   1671 
   1672 /* Define if C99 functions or macros in <wchar.h> should be imported in
   1673    <cwchar> in namespace std for C++11. */
   1674 #define _GLIBCXX11_USE_C99_WCHAR 1
   1675 
   1676 /* Define if C99 functions in <complex.h> should be used in <complex> for
   1677    C++98. Using compiler builtins for these functions requires corresponding
   1678    C99 library functions to be present. */
   1679 #define _GLIBCXX98_USE_C99_COMPLEX 1
   1680 
   1681 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
   1682    in namespace std for C++98. */
   1683 #define _GLIBCXX98_USE_C99_MATH 1
   1684 
   1685 /* Define if C99 functions or macros in <stdio.h> should be imported in
   1686    <cstdio> in namespace std for C++98. */
   1687 #define _GLIBCXX98_USE_C99_STDIO 1
   1688 
   1689 /* Define if C99 functions or macros in <stdlib.h> should be imported in
   1690    <cstdlib> in namespace std for C++98. */
   1691 #define _GLIBCXX98_USE_C99_STDLIB 1
   1692 
   1693 /* Define if C99 functions or macros in <wchar.h> should be imported in
   1694    <cwchar> in namespace std for C++98. */
   1695 #define _GLIBCXX98_USE_C99_WCHAR 1
   1696 
   1697 /* Define if the compiler supports C++11 atomics. */
   1698 #define _GLIBCXX_ATOMIC_BUILTINS 1
   1699 
   1700 /* Define to use concept checking code from the boost libraries. */
   1701 /* #undef _GLIBCXX_CONCEPT_CHECKS */
   1702 
   1703 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
   1704    undefined for platform defaults */
   1705 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
   1706 
   1707 /* Define if gthreads library is available. */
   1708 #define _GLIBCXX_HAS_GTHREADS 1
   1709 
   1710 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
   1711 #define _GLIBCXX_HOSTED 1
   1712 
   1713 /* Define if compatibility should be provided for alternative 128-bit long
   1714    double formats. */
   1715 
   1716 /* Define if compatibility should be provided for -mlong-double-64. */
   1717 
   1718 /* Define to the letter to which size_t is mangled. */
   1719 #define _GLIBCXX_MANGLE_SIZE_T m
   1720 
   1721 /* Define if C99 llrint and llround functions are missing from <math.h>. */
   1722 /* #undef _GLIBCXX_NO_C99_ROUNDING_FUNCS */
   1723 
   1724 /* Defined if no way to sleep is available. */
   1725 /* #undef _GLIBCXX_NO_SLEEP */
   1726 
   1727 /* Define if ptrdiff_t is int. */
   1728 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
   1729 
   1730 /* Define if using setrlimit to set resource limits during "make check" */
   1731 #define _GLIBCXX_RES_LIMITS 1
   1732 
   1733 /* Define if size_t is unsigned int. */
   1734 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
   1735 
   1736 /* Define to the value of the EOF integer constant. */
   1737 #define _GLIBCXX_STDIO_EOF -1
   1738 
   1739 /* Define to the value of the SEEK_CUR integer constant. */
   1740 #define _GLIBCXX_STDIO_SEEK_CUR 1
   1741 
   1742 /* Define to the value of the SEEK_END integer constant. */
   1743 #define _GLIBCXX_STDIO_SEEK_END 2
   1744 
   1745 /* Define to use symbol versioning in the shared library. */
   1746 #define _GLIBCXX_SYMVER 1
   1747 
   1748 /* Define to use darwin versioning in the shared library. */
   1749 /* #undef _GLIBCXX_SYMVER_DARWIN */
   1750 
   1751 /* Define to use GNU versioning in the shared library. */
   1752 #define _GLIBCXX_SYMVER_GNU 1
   1753 
   1754 /* Define to use GNU namespace versioning in the shared library. */
   1755 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
   1756 
   1757 /* Define to use Sun versioning in the shared library. */
   1758 /* #undef _GLIBCXX_SYMVER_SUN */
   1759 
   1760 /* Define if C11 functions in <uchar.h> should be imported into namespace std
   1761    in <cuchar>. */
   1762 #define _GLIBCXX_USE_C11_UCHAR_CXX11 1
   1763 
   1764 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
   1765    <stdio.h>, and <stdlib.h> can be used or exposed. */
   1766 #define _GLIBCXX_USE_C99 1
   1767 
   1768 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
   1769    Using compiler builtins for these functions requires corresponding C99
   1770    library functions to be present. */
   1771 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
   1772 
   1773 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
   1774    namespace std::tr1. */
   1775 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
   1776 
   1777 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
   1778    namespace std::tr1. */
   1779 #define _GLIBCXX_USE_C99_FENV_TR1 1
   1780 
   1781 /* Define if C99 functions in <inttypes.h> should be imported in
   1782    <tr1/cinttypes> in namespace std::tr1. */
   1783 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
   1784 
   1785 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
   1786    <tr1/cinttypes> in namespace std::tr1. */
   1787 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
   1788 
   1789 /* Define if C99 functions or macros in <math.h> should be imported in
   1790    <tr1/cmath> in namespace std::tr1. */
   1791 #define _GLIBCXX_USE_C99_MATH_TR1 1
   1792 
   1793 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
   1794    namespace std::tr1. */
   1795 #define _GLIBCXX_USE_C99_STDINT_TR1 1
   1796 
   1797 /* Define if usable chdir is available in <unistd.h>. */
   1798 #define _GLIBCXX_USE_CHDIR 1
   1799 
   1800 /* Define if usable chmod is available in <sys/stat.h>. */
   1801 #define _GLIBCXX_USE_CHMOD 1
   1802 
   1803 /* Defined if clock_gettime syscall has monotonic and realtime clock support.
   1804    */
   1805 /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */
   1806 
   1807 /* Defined if clock_gettime has monotonic clock support. */
   1808 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
   1809 
   1810 /* Defined if clock_gettime has realtime clock support. */
   1811 #define _GLIBCXX_USE_CLOCK_REALTIME 1
   1812 
   1813 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
   1814    this host. */
   1815 /* #undef _GLIBCXX_USE_DECIMAL_FLOAT */
   1816 
   1817 /* Define if /dev/random and /dev/urandom are available for
   1818    std::random_device. */
   1819 #define _GLIBCXX_USE_DEV_RANDOM 1
   1820 
   1821 /* Define if fchmod is available in <sys/stat.h>. */
   1822 #define _GLIBCXX_USE_FCHMOD 1
   1823 
   1824 /* Define if fchmodat is available in <sys/stat.h>. */
   1825 #define _GLIBCXX_USE_FCHMODAT 1
   1826 
   1827 /* Define if usable getcwd is available in <unistd.h>. */
   1828 #define _GLIBCXX_USE_GETCWD 1
   1829 
   1830 /* Defined if gettimeofday is available. */
   1831 #define _GLIBCXX_USE_GETTIMEOFDAY 1
   1832 
   1833 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
   1834 /* #undef _GLIBCXX_USE_GET_NPROCS */
   1835 
   1836 /* Define if LFS support is available. */
   1837 /* #undef _GLIBCXX_USE_LFS */
   1838 
   1839 /* Define if code specialized for long long should be used. */
   1840 #define _GLIBCXX_USE_LONG_LONG 1
   1841 
   1842 /* Define if lstat is available in <sys/stat.h>. */
   1843 #define _GLIBCXX_USE_LSTAT 1
   1844 
   1845 /* Define if usable mkdir is available in <sys/stat.h>. */
   1846 #define _GLIBCXX_USE_MKDIR 1
   1847 
   1848 /* Defined if nanosleep is available. */
   1849 #define _GLIBCXX_USE_NANOSLEEP 1
   1850 
   1851 /* Define if NLS translations are to be used. */
   1852 /* #undef _GLIBCXX_USE_NLS */
   1853 
   1854 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
   1855 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
   1856 
   1857 /* Define if pthread_cond_clockwait is available in <pthread.h>. */
   1858 /* #undef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT */
   1859 
   1860 /* Define if pthread_mutex_clocklock is available in <pthread.h>. */
   1861 /* #undef _GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK */
   1862 
   1863 /* Define if pthread_rwlock_clockrdlock and pthread_rwlock_clockwrlock are
   1864    available in <pthread.h>. */
   1865 /* #undef _GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK */
   1866 
   1867 /* Define if POSIX read/write locks are available in <gthr.h>. */
   1868 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1
   1869 
   1870 /* Define if /dev/random and /dev/urandom are available for the random_device
   1871    of TR1 (Chapter 5.1). */
   1872 #define _GLIBCXX_USE_RANDOM_TR1 1
   1873 
   1874 /* Define if usable realpath is available in <stdlib.h>. */
   1875 /* #undef _GLIBCXX_USE_REALPATH */
   1876 
   1877 /* Defined if sched_yield is available. */
   1878 #define _GLIBCXX_USE_SCHED_YIELD 1
   1879 
   1880 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
   1881 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
   1882 
   1883 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
   1884 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
   1885 
   1886 /* Define if sendfile is available in <sys/sendfile.h>. */
   1887 /* #undef _GLIBCXX_USE_SENDFILE */
   1888 
   1889 /* Define to restrict std::__basic_file<> to stdio APIs. */
   1890 /* #undef _GLIBCXX_USE_STDIO_PURE */
   1891 
   1892 /* Define if struct stat has timespec members. */
   1893 #define _GLIBCXX_USE_ST_MTIM 1
   1894 
   1895 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
   1896 #define _GLIBCXX_USE_SYSCTL_HW_NCPU 1
   1897 
   1898 /* Define if obsolescent tmpnam is available in <stdio.h>. */
   1899 #define _GLIBCXX_USE_TMPNAM 1
   1900 
   1901 /* Define if c8rtomb and mbrtoc8 functions in <uchar.h> should be imported
   1902    into namespace std in <cuchar> for C++20. */
   1903 #define _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20 1
   1904 
   1905 /* Define if c8rtomb and mbrtoc8 functions in <uchar.h> should be imported
   1906    into namespace std in <cuchar> for -fchar8_t. */
   1907 #define _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T 1
   1908 
   1909 /* Define if utime is available in <utime.h>. */
   1910 #define _GLIBCXX_USE_UTIME 1
   1911 
   1912 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and
   1913    AT_FDCWD in <fcntl.h>. */
   1914 #define _GLIBCXX_USE_UTIMENSAT 1
   1915 
   1916 /* Define if code specialized for wchar_t should be used. */
   1917 #define _GLIBCXX_USE_WCHAR_T 1
   1918 
   1919 /* Define to 1 if a verbose library is built, or 0 otherwise. */
   1920 #define _GLIBCXX_VERBOSE 1
   1921 
   1922 /* Defined if as can handle rdrand. */
   1923 /* #undef _GLIBCXX_X86_RDRAND */
   1924 
   1925 /* Defined if as can handle rdseed. */
   1926 /* #undef _GLIBCXX_X86_RDSEED */
   1927 
   1928 /* Define to 1 if mutex_timedlock is available. */
   1929 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 0
   1930 
   1931 /* Define for large files, on AIX-style hosts. */
   1932 /* #undef _GLIBCXX_LARGE_FILES */
   1933 
   1934 /* Define if all C++11 floating point overloads are available in <math.h>.  */
   1935 #if __cplusplus >= 201103L
   1936 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */
   1937 #endif
   1938 
   1939 /* Define if all C++11 integral type overloads are available in <math.h>.  */
   1940 #if __cplusplus >= 201103L
   1941 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */
   1942 #endif
   1943 
   1944 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
   1945 # define _GLIBCXX_HAVE_ACOSF 1
   1946 # define acosf _acosf
   1947 #endif
   1948 
   1949 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
   1950 # define _GLIBCXX_HAVE_ACOSL 1
   1951 # define acosl _acosl
   1952 #endif
   1953 
   1954 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
   1955 # define _GLIBCXX_HAVE_ASINF 1
   1956 # define asinf _asinf
   1957 #endif
   1958 
   1959 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
   1960 # define _GLIBCXX_HAVE_ASINL 1
   1961 # define asinl _asinl
   1962 #endif
   1963 
   1964 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
   1965 # define _GLIBCXX_HAVE_ATAN2F 1
   1966 # define atan2f _atan2f
   1967 #endif
   1968 
   1969 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
   1970 # define _GLIBCXX_HAVE_ATAN2L 1
   1971 # define atan2l _atan2l
   1972 #endif
   1973 
   1974 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
   1975 # define _GLIBCXX_HAVE_ATANF 1
   1976 # define atanf _atanf
   1977 #endif
   1978 
   1979 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
   1980 # define _GLIBCXX_HAVE_ATANL 1
   1981 # define atanl _atanl
   1982 #endif
   1983 
   1984 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
   1985 # define _GLIBCXX_HAVE_CEILF 1
   1986 # define ceilf _ceilf
   1987 #endif
   1988 
   1989 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
   1990 # define _GLIBCXX_HAVE_CEILL 1
   1991 # define ceill _ceill
   1992 #endif
   1993 
   1994 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
   1995 # define _GLIBCXX_HAVE_COSF 1
   1996 # define cosf _cosf
   1997 #endif
   1998 
   1999 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
   2000 # define _GLIBCXX_HAVE_COSHF 1
   2001 # define coshf _coshf
   2002 #endif
   2003 
   2004 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
   2005 # define _GLIBCXX_HAVE_COSHL 1
   2006 # define coshl _coshl
   2007 #endif
   2008 
   2009 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
   2010 # define _GLIBCXX_HAVE_COSL 1
   2011 # define cosl _cosl
   2012 #endif
   2013 
   2014 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
   2015 # define _GLIBCXX_HAVE_EXPF 1
   2016 # define expf _expf
   2017 #endif
   2018 
   2019 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
   2020 # define _GLIBCXX_HAVE_EXPL 1
   2021 # define expl _expl
   2022 #endif
   2023 
   2024 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
   2025 # define _GLIBCXX_HAVE_FABSF 1
   2026 # define fabsf _fabsf
   2027 #endif
   2028 
   2029 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
   2030 # define _GLIBCXX_HAVE_FABSL 1
   2031 # define fabsl _fabsl
   2032 #endif
   2033 
   2034 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
   2035 # define _GLIBCXX_HAVE_FINITE 1
   2036 # define finite _finite
   2037 #endif
   2038 
   2039 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
   2040 # define _GLIBCXX_HAVE_FINITEF 1
   2041 # define finitef _finitef
   2042 #endif
   2043 
   2044 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
   2045 # define _GLIBCXX_HAVE_FINITEL 1
   2046 # define finitel _finitel
   2047 #endif
   2048 
   2049 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
   2050 # define _GLIBCXX_HAVE_FLOORF 1
   2051 # define floorf _floorf
   2052 #endif
   2053 
   2054 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
   2055 # define _GLIBCXX_HAVE_FLOORL 1
   2056 # define floorl _floorl
   2057 #endif
   2058 
   2059 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
   2060 # define _GLIBCXX_HAVE_FMODF 1
   2061 # define fmodf _fmodf
   2062 #endif
   2063 
   2064 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
   2065 # define _GLIBCXX_HAVE_FMODL 1
   2066 # define fmodl _fmodl
   2067 #endif
   2068 
   2069 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
   2070 # define _GLIBCXX_HAVE_FPCLASS 1
   2071 # define fpclass _fpclass
   2072 #endif
   2073 
   2074 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
   2075 # define _GLIBCXX_HAVE_FREXPF 1
   2076 # define frexpf _frexpf
   2077 #endif
   2078 
   2079 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
   2080 # define _GLIBCXX_HAVE_FREXPL 1
   2081 # define frexpl _frexpl
   2082 #endif
   2083 
   2084 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
   2085 # define _GLIBCXX_HAVE_HYPOT 1
   2086 # define hypot _hypot
   2087 #endif
   2088 
   2089 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
   2090 # define _GLIBCXX_HAVE_HYPOTF 1
   2091 # define hypotf _hypotf
   2092 #endif
   2093 
   2094 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
   2095 # define _GLIBCXX_HAVE_HYPOTL 1
   2096 # define hypotl _hypotl
   2097 #endif
   2098 
   2099 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
   2100 # define _GLIBCXX_HAVE_ISINF 1
   2101 # define isinf _isinf
   2102 #endif
   2103 
   2104 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
   2105 # define _GLIBCXX_HAVE_ISINFF 1
   2106 # define isinff _isinff
   2107 #endif
   2108 
   2109 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
   2110 # define _GLIBCXX_HAVE_ISINFL 1
   2111 # define isinfl _isinfl
   2112 #endif
   2113 
   2114 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
   2115 # define _GLIBCXX_HAVE_ISNAN 1
   2116 # define isnan _isnan
   2117 #endif
   2118 
   2119 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
   2120 # define _GLIBCXX_HAVE_ISNANF 1
   2121 # define isnanf _isnanf
   2122 #endif
   2123 
   2124 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
   2125 # define _GLIBCXX_HAVE_ISNANL 1
   2126 # define isnanl _isnanl
   2127 #endif
   2128 
   2129 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
   2130 # define _GLIBCXX_HAVE_LDEXPF 1
   2131 # define ldexpf _ldexpf
   2132 #endif
   2133 
   2134 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
   2135 # define _GLIBCXX_HAVE_LDEXPL 1
   2136 # define ldexpl _ldexpl
   2137 #endif
   2138 
   2139 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
   2140 # define _GLIBCXX_HAVE_LOG10F 1
   2141 # define log10f _log10f
   2142 #endif
   2143 
   2144 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
   2145 # define _GLIBCXX_HAVE_LOG10L 1
   2146 # define log10l _log10l
   2147 #endif
   2148 
   2149 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
   2150 # define _GLIBCXX_HAVE_LOGF 1
   2151 # define logf _logf
   2152 #endif
   2153 
   2154 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
   2155 # define _GLIBCXX_HAVE_LOGL 1
   2156 # define logl _logl
   2157 #endif
   2158 
   2159 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
   2160 # define _GLIBCXX_HAVE_MODF 1
   2161 # define modf _modf
   2162 #endif
   2163 
   2164 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
   2165 # define _GLIBCXX_HAVE_MODFF 1
   2166 # define modff _modff
   2167 #endif
   2168 
   2169 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
   2170 # define _GLIBCXX_HAVE_MODFL 1
   2171 # define modfl _modfl
   2172 #endif
   2173 
   2174 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
   2175 # define _GLIBCXX_HAVE_POWF 1
   2176 # define powf _powf
   2177 #endif
   2178 
   2179 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
   2180 # define _GLIBCXX_HAVE_POWL 1
   2181 # define powl _powl
   2182 #endif
   2183 
   2184 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
   2185 # define _GLIBCXX_HAVE_QFPCLASS 1
   2186 # define qfpclass _qfpclass
   2187 #endif
   2188 
   2189 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
   2190 # define _GLIBCXX_HAVE_SINCOS 1
   2191 # define sincos _sincos
   2192 #endif
   2193 
   2194 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
   2195 # define _GLIBCXX_HAVE_SINCOSF 1
   2196 # define sincosf _sincosf
   2197 #endif
   2198 
   2199 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
   2200 # define _GLIBCXX_HAVE_SINCOSL 1
   2201 # define sincosl _sincosl
   2202 #endif
   2203 
   2204 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
   2205 # define _GLIBCXX_HAVE_SINF 1
   2206 # define sinf _sinf
   2207 #endif
   2208 
   2209 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
   2210 # define _GLIBCXX_HAVE_SINHF 1
   2211 # define sinhf _sinhf
   2212 #endif
   2213 
   2214 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
   2215 # define _GLIBCXX_HAVE_SINHL 1
   2216 # define sinhl _sinhl
   2217 #endif
   2218 
   2219 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
   2220 # define _GLIBCXX_HAVE_SINL 1
   2221 # define sinl _sinl
   2222 #endif
   2223 
   2224 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
   2225 # define _GLIBCXX_HAVE_SQRTF 1
   2226 # define sqrtf _sqrtf
   2227 #endif
   2228 
   2229 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
   2230 # define _GLIBCXX_HAVE_SQRTL 1
   2231 # define sqrtl _sqrtl
   2232 #endif
   2233 
   2234 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
   2235 # define _GLIBCXX_HAVE_STRTOF 1
   2236 # define strtof _strtof
   2237 #endif
   2238 
   2239 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
   2240 # define _GLIBCXX_HAVE_STRTOLD 1
   2241 # define strtold _strtold
   2242 #endif
   2243 
   2244 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
   2245 # define _GLIBCXX_HAVE_TANF 1
   2246 # define tanf _tanf
   2247 #endif
   2248 
   2249 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
   2250 # define _GLIBCXX_HAVE_TANHF 1
   2251 # define tanhf _tanhf
   2252 #endif
   2253 
   2254 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
   2255 # define _GLIBCXX_HAVE_TANHL 1
   2256 # define tanhl _tanhl
   2257 #endif
   2258 
   2259 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
   2260 # define _GLIBCXX_HAVE_TANL 1
   2261 # define tanl _tanl
   2262 #endif
   2263 
   2264 #endif // _GLIBCXX_CXX_CONFIG_H
   2265