Home | History | Annotate | Download | only in bits
      1 // Predefined symbols and macros -*- C++ -*-
      2 
      3 // Copyright (C) 1997-2013 Free Software Foundation, Inc.
      4 //
      5 // This file is part of the GNU ISO C++ Library.  This library is free
      6 // software; you can redistribute it and/or modify it under the
      7 // terms of the GNU General Public License as published by the
      8 // Free Software Foundation; either version 3, or (at your option)
      9 // any later version.
     10 
     11 // This library is distributed in the hope that it will be useful,
     12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14 // GNU General Public License for more details.
     15 
     16 // Under Section 7 of GPL version 3, you are granted additional
     17 // permissions described in the GCC Runtime Library Exception, version
     18 // 3.1, as published by the Free Software Foundation.
     19 
     20 // You should have received a copy of the GNU General Public License and
     21 // a copy of the GCC Runtime Library Exception along with this program;
     22 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     23 // <http://www.gnu.org/licenses/>.
     24 
     25 /** @file bits/c++config.h
     26  *  This is an internal header file, included by other library headers.
     27  *  Do not attempt to use it directly. @headername{iosfwd}
     28  */
     29 
     30 #ifndef _GLIBCXX_CXX_CONFIG_H
     31 #define _GLIBCXX_CXX_CONFIG_H 1
     32 
     33 // The current version of the C++ library in compressed ISO date format.
     34 #define __GLIBCXX__ 20130322
     35 
     36 // Macros for various attributes.
     37 //   _GLIBCXX_PURE
     38 //   _GLIBCXX_CONST
     39 //   _GLIBCXX_NORETURN
     40 //   _GLIBCXX_NOTHROW
     41 //   _GLIBCXX_VISIBILITY
     42 #ifndef _GLIBCXX_PURE
     43 # define _GLIBCXX_PURE __attribute__ ((__pure__))
     44 #endif
     45 
     46 #ifndef _GLIBCXX_CONST
     47 # define _GLIBCXX_CONST __attribute__ ((__const__))
     48 #endif
     49 
     50 #ifndef _GLIBCXX_NORETURN
     51 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
     52 #endif
     53 
     54 // See below for C++
     55 #ifndef _GLIBCXX_NOTHROW
     56 # ifndef __cplusplus
     57 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
     58 # endif
     59 #endif
     60 
     61 // Macros for visibility attributes.
     62 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
     63 //   _GLIBCXX_VISIBILITY
     64 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
     65 
     66 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
     67 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
     68 #else
     69 // If this is not supplied by the OS-specific or CPU-specific
     70 // headers included below, it will be defined to an empty default.
     71 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
     72 #endif
     73 
     74 // Macros for deprecated attributes.
     75 //   _GLIBCXX_USE_DEPRECATED
     76 //   _GLIBCXX_DEPRECATED
     77 #ifndef _GLIBCXX_USE_DEPRECATED
     78 # define _GLIBCXX_USE_DEPRECATED 1
     79 #endif
     80 
     81 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
     82 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
     83 #else
     84 # define _GLIBCXX_DEPRECATED
     85 #endif
     86 
     87 #if __cplusplus
     88 
     89 // Macro for constexpr, to support in mixed 03/0x mode.
     90 #ifndef _GLIBCXX_CONSTEXPR
     91 # if __cplusplus >= 201103L
     92 #  define _GLIBCXX_CONSTEXPR constexpr
     93 #  define _GLIBCXX_USE_CONSTEXPR constexpr
     94 # else
     95 #  define _GLIBCXX_CONSTEXPR
     96 #  define _GLIBCXX_USE_CONSTEXPR const
     97 # endif
     98 #endif
     99 
    100 // Macro for noexcept, to support in mixed 03/0x mode.
    101 #ifndef _GLIBCXX_NOEXCEPT
    102 # if __cplusplus >= 201103L
    103 #  define _GLIBCXX_NOEXCEPT noexcept
    104 #  define _GLIBCXX_USE_NOEXCEPT noexcept
    105 #  define _GLIBCXX_THROW(_EXC)
    106 # else
    107 #  define _GLIBCXX_NOEXCEPT
    108 #  define _GLIBCXX_USE_NOEXCEPT throw()
    109 #  define _GLIBCXX_THROW(_EXC) throw(_EXC)
    110 # endif
    111 #endif
    112 
    113 #ifndef _GLIBCXX_NOTHROW
    114 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
    115 #endif
    116 
    117 #ifndef _GLIBCXX_THROW_OR_ABORT
    118 # if __EXCEPTIONS
    119 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
    120 # else
    121 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
    122 # endif
    123 #endif
    124 
    125 // Macro for extern template, ie controling template linkage via use
    126 // of extern keyword on template declaration. As documented in the g++
    127 // manual, it inhibits all implicit instantiations and is used
    128 // throughout the library to avoid multiple weak definitions for
    129 // required types that are already explicitly instantiated in the
    130 // library binary. This substantially reduces the binary size of
    131 // resulting executables.
    132 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
    133 // templates only in basic_string, thus activating its debug-mode
    134 // checks even at -O0.
    135 # define _GLIBCXX_EXTERN_TEMPLATE 1
    136 
    137 /*
    138   Outline of libstdc++ namespaces.
    139 
    140   namespace std
    141   {
    142     namespace __debug { }
    143     namespace __parallel { }
    144     namespace __profile { }
    145     namespace __cxx1998 { }
    146 
    147     namespace __detail { }
    148 
    149     namespace rel_ops { }
    150 
    151     namespace tr1
    152     {
    153       namespace placeholders { }
    154       namespace regex_constants { }
    155       namespace __detail { }
    156     }
    157 
    158     namespace tr2 { }
    159 
    160     namespace decimal { }
    161 
    162     namespace chrono { }
    163     namespace placeholders { }
    164     namespace regex_constants { }
    165     namespace this_thread { }
    166   }
    167 
    168   namespace abi { }
    169 
    170   namespace __gnu_cxx
    171   {
    172     namespace __detail { }
    173   }
    174 
    175   For full details see:
    176   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
    177 */
    178 namespace std
    179 {
    180   typedef __SIZE_TYPE__ 	size_t;
    181   typedef __PTRDIFF_TYPE__	ptrdiff_t;
    182 
    183 #if __cplusplus >= 201103L
    184   typedef decltype(nullptr)	nullptr_t;
    185 #endif
    186 }
    187 
    188 
    189 // Defined if inline namespaces are used for versioning.
    190 # define _GLIBCXX_INLINE_VERSION 0
    191 
    192 // Inline namespace for symbol versioning.
    193 #if _GLIBCXX_INLINE_VERSION
    194 
    195 namespace std
    196 {
    197   inline namespace __7 { }
    198 
    199   namespace rel_ops { inline namespace __7 { } }
    200 
    201   namespace tr1
    202   {
    203     inline namespace __7 { }
    204     namespace placeholders { inline namespace __7 { } }
    205     namespace regex_constants { inline namespace __7 { } }
    206     namespace __detail { inline namespace __7 { } }
    207   }
    208 
    209   namespace tr2
    210   { inline namespace __7 { } }
    211 
    212   namespace decimal { inline namespace __7 { } }
    213 
    214   namespace chrono { inline namespace __7 { } }
    215   namespace placeholders { inline namespace __7 { } }
    216   namespace regex_constants { inline namespace __7 { } }
    217   namespace this_thread { inline namespace __7 { } }
    218 
    219   namespace __detail { inline namespace __7 { } }
    220 }
    221 
    222 namespace __gnu_cxx
    223 {
    224   inline namespace __7 { }
    225   namespace __detail { inline namespace __7 { } }
    226 }
    227 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 {
    228 # define _GLIBCXX_END_NAMESPACE_VERSION }
    229 #else
    230 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
    231 # define _GLIBCXX_END_NAMESPACE_VERSION
    232 #endif
    233 
    234 
    235 // Inline namespaces for special modes: debug, parallel, profile.
    236 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
    237     || defined(_GLIBCXX_PROFILE)
    238 namespace std
    239 {
    240   // Non-inline namespace for components replaced by alternates in active mode.
    241   namespace __cxx1998
    242   {
    243 #if _GLIBCXX_INLINE_VERSION
    244  inline namespace __7 { }
    245 #endif
    246   }
    247 
    248   // Inline namespace for debug mode.
    249 # ifdef _GLIBCXX_DEBUG
    250   inline namespace __debug { }
    251 # endif
    252 
    253   // Inline namespaces for parallel mode.
    254 # ifdef _GLIBCXX_PARALLEL
    255   inline namespace __parallel { }
    256 # endif
    257 
    258   // Inline namespaces for profile mode
    259 # ifdef _GLIBCXX_PROFILE
    260   inline namespace __profile { }
    261 # endif
    262 }
    263 
    264 // Check for invalid usage and unsupported mixed-mode use.
    265 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
    266 #  error illegal use of multiple inlined namespaces
    267 # endif
    268 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
    269 #  error illegal use of multiple inlined namespaces
    270 # endif
    271 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
    272 #  error illegal use of multiple inlined namespaces
    273 # endif
    274 
    275 // Check for invalid use due to lack for weak symbols.
    276 # if __NO_INLINE__ && !__GXX_WEAK__
    277 #  warning currently using inlined namespace mode which may fail \
    278    without inlining due to lack of weak symbols
    279 # endif
    280 #endif
    281 
    282 // Macros for namespace scope. Either namespace std:: or the name
    283 // of some nested namespace within it corresponding to the active mode.
    284 // _GLIBCXX_STD_A
    285 // _GLIBCXX_STD_C
    286 //
    287 // Macros for opening/closing conditional namespaces.
    288 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
    289 // _GLIBCXX_END_NAMESPACE_ALGO
    290 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
    291 // _GLIBCXX_END_NAMESPACE_CONTAINER
    292 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
    293 # define _GLIBCXX_STD_C __cxx1998
    294 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
    295 	 namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION
    296 # define _GLIBCXX_END_NAMESPACE_CONTAINER \
    297 	 _GLIBCXX_END_NAMESPACE_VERSION }
    298 # undef _GLIBCXX_EXTERN_TEMPLATE
    299 # define _GLIBCXX_EXTERN_TEMPLATE -1
    300 #endif
    301 
    302 #ifdef _GLIBCXX_PARALLEL
    303 # define _GLIBCXX_STD_A __cxx1998
    304 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
    305 	 namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION
    306 # define _GLIBCXX_END_NAMESPACE_ALGO \
    307 	 _GLIBCXX_END_NAMESPACE_VERSION }
    308 #endif
    309 
    310 #ifndef _GLIBCXX_STD_A
    311 # define _GLIBCXX_STD_A std
    312 #endif
    313 
    314 #ifndef _GLIBCXX_STD_C
    315 # define _GLIBCXX_STD_C std
    316 #endif
    317 
    318 #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO
    319 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
    320 #endif
    321 
    322 #ifndef _GLIBCXX_END_NAMESPACE_ALGO
    323 # define _GLIBCXX_END_NAMESPACE_ALGO
    324 #endif
    325 
    326 #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
    327 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
    328 #endif
    329 
    330 #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER
    331 # define _GLIBCXX_END_NAMESPACE_CONTAINER
    332 #endif
    333 
    334 // GLIBCXX_ABI Deprecated
    335 // Define if compatibility should be provided for -mlong-double-64.
    336 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
    337 
    338 // Inline namespace for long double 128 mode.
    339 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
    340 namespace std
    341 {
    342   inline namespace __gnu_cxx_ldbl128 { }
    343 }
    344 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
    345 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
    346 # define _GLIBCXX_END_NAMESPACE_LDBL }
    347 #else
    348 # define _GLIBCXX_NAMESPACE_LDBL
    349 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
    350 # define _GLIBCXX_END_NAMESPACE_LDBL
    351 #endif
    352 
    353 // Assert.
    354 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
    355 # define __glibcxx_assert(_Condition)
    356 #else
    357 namespace std
    358 {
    359   // Avoid the use of assert, because we're trying to keep the <cassert>
    360   // include out of the mix.
    361   inline void
    362   __replacement_assert(const char* __file, int __line,
    363 		       const char* __function, const char* __condition)
    364   {
    365     __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
    366 		     __function, __condition);
    367     __builtin_abort();
    368   }
    369 }
    370 #define __glibcxx_assert(_Condition)				   	 \
    371   do 									 \
    372   {							      		 \
    373     if (! (_Condition))                                                  \
    374       std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
    375 				#_Condition);				 \
    376   } while (false)
    377 #endif
    378 
    379 // Macros for race detectors.
    380 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
    381 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
    382 // atomic (lock-free) synchronization to race detectors:
    383 // the race detector will infer a happens-before arc from the former to the
    384 // latter when they share the same argument pointer.
    385 //
    386 // The most frequent use case for these macros (and the only case in the
    387 // current implementation of the library) is atomic reference counting:
    388 //   void _M_remove_reference()
    389 //   {
    390 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
    391 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
    392 //       {
    393 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
    394 //         _M_destroy(__a);
    395 //       }
    396 //   }
    397 // The annotations in this example tell the race detector that all memory
    398 // accesses occurred when the refcount was positive do not race with
    399 // memory accesses which occurred after the refcount became zero.
    400 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
    401 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
    402 #endif
    403 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
    404 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
    405 #endif
    406 
    407 // Macros for C linkage: define extern "C" linkage only when using C++.
    408 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
    409 # define _GLIBCXX_END_EXTERN_C }
    410 
    411 #else // !__cplusplus
    412 # define _GLIBCXX_BEGIN_EXTERN_C
    413 # define _GLIBCXX_END_EXTERN_C
    414 #endif
    415 
    416 
    417 // First includes.
    418 
    419 // Pick up any OS-specific definitions.
    420 #include <bits/os_defines.h>
    421 
    422 // Pick up any CPU-specific definitions.
    423 #include <bits/cpu_defines.h>
    424 
    425 // If platform uses neither visibility nor psuedo-visibility,
    426 // specify empty default for namespace annotation macros.
    427 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
    428 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
    429 #endif
    430 
    431 // Certain function definitions that are meant to be overridable from
    432 // user code are decorated with this macro.  For some targets, this
    433 // macro causes these definitions to be weak.
    434 #ifndef _GLIBCXX_WEAK_DEFINITION
    435 # define _GLIBCXX_WEAK_DEFINITION
    436 #endif
    437 
    438 
    439 // The remainder of the prewritten config is automatic; all the
    440 // user hooks are listed above.
    441 
    442 // Create a boolean flag to be used to determine if --fast-math is set.
    443 #ifdef __FAST_MATH__
    444 # define _GLIBCXX_FAST_MATH 1
    445 #else
    446 # define _GLIBCXX_FAST_MATH 0
    447 #endif
    448 
    449 // This marks string literals in header files to be extracted for eventual
    450 // translation.  It is primarily used for messages in thrown exceptions; see
    451 // src/functexcept.cc.  We use __N because the more traditional _N is used
    452 // for something else under certain OSes (see BADNAMES).
    453 #define __N(msgid)     (msgid)
    454 
    455 // For example, <windows.h> is known to #define min and max as macros...
    456 #undef min
    457 #undef max
    458 
    459 // End of prewritten config; the settings discovered at configure time follow.
    460 /* config.h.  Generated from config.h.in by configure.  */
    461 /* config.h.in.  Generated from configure.ac by autoheader.  */
    462 
    463 /* Define to 1 if you have the `acosf' function. */
    464 #define _GLIBCXX_HAVE_ACOSF 1
    465 
    466 /* Define to 1 if you have the `acosl' function. */
    467 /* #undef _GLIBCXX_HAVE_ACOSL */
    468 
    469 /* Define to 1 if you have the `asinf' function. */
    470 #define _GLIBCXX_HAVE_ASINF 1
    471 
    472 /* Define to 1 if you have the `asinl' function. */
    473 /* #undef _GLIBCXX_HAVE_ASINL */
    474 
    475 /* Define to 1 if the target assembler supports .symver directive. */
    476 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
    477 
    478 /* Define to 1 if you have the `atan2f' function. */
    479 #define _GLIBCXX_HAVE_ATAN2F 1
    480 
    481 /* Define to 1 if you have the `atan2l' function. */
    482 /* #undef _GLIBCXX_HAVE_ATAN2L */
    483 
    484 /* Define to 1 if you have the `atanf' function. */
    485 #define _GLIBCXX_HAVE_ATANF 1
    486 
    487 /* Define to 1 if you have the `atanl' function. */
    488 /* #undef _GLIBCXX_HAVE_ATANL */
    489 
    490 /* Define to 1 if you have the `at_quick_exit' function. */
    491 /* #undef _GLIBCXX_HAVE_AT_QUICK_EXIT */
    492 
    493 /* Define to 1 if the target assembler supports thread-local storage. */
    494 /* #undef _GLIBCXX_HAVE_CC_TLS */
    495 
    496 /* Define to 1 if you have the `ceilf' function. */
    497 #define _GLIBCXX_HAVE_CEILF 1
    498 
    499 /* Define to 1 if you have the `ceill' function. */
    500 #define _GLIBCXX_HAVE_CEILL 1
    501 
    502 /* Define to 1 if you have the <complex.h> header file. */
    503 /* #undef _GLIBCXX_HAVE_COMPLEX_H */
    504 
    505 /* Define to 1 if you have the `cosf' function. */
    506 #define _GLIBCXX_HAVE_COSF 1
    507 
    508 /* Define to 1 if you have the `coshf' function. */
    509 #define _GLIBCXX_HAVE_COSHF 1
    510 
    511 /* Define to 1 if you have the `coshl' function. */
    512 /* #undef _GLIBCXX_HAVE_COSHL */
    513 
    514 /* Define to 1 if you have the `cosl' function. */
    515 /* #undef _GLIBCXX_HAVE_COSL */
    516 
    517 /* Define to 1 if you have the <dlfcn.h> header file. */
    518 #define _GLIBCXX_HAVE_DLFCN_H 1
    519 
    520 /* Define if EBADMSG exists. */
    521 #define _GLIBCXX_HAVE_EBADMSG 1
    522 
    523 /* Define if ECANCELED exists. */
    524 #define _GLIBCXX_HAVE_ECANCELED 1
    525 
    526 /* Define if ECHILD exists. */
    527 #define _GLIBCXX_HAVE_ECHILD 1
    528 
    529 /* Define if EIDRM exists. */
    530 #define _GLIBCXX_HAVE_EIDRM 1
    531 
    532 /* Define to 1 if you have the <endian.h> header file. */
    533 #define _GLIBCXX_HAVE_ENDIAN_H 1
    534 
    535 /* Define if ENODATA exists. */
    536 #define _GLIBCXX_HAVE_ENODATA 1
    537 
    538 /* Define if ENOLINK exists. */
    539 #define _GLIBCXX_HAVE_ENOLINK 1
    540 
    541 /* Define if ENOSPC exists. */
    542 #define _GLIBCXX_HAVE_ENOSPC 1
    543 
    544 /* Define if ENOSR exists. */
    545 #define _GLIBCXX_HAVE_ENOSR 1
    546 
    547 /* Define if ENOSTR exists. */
    548 #define _GLIBCXX_HAVE_ENOSTR 1
    549 
    550 /* Define if ENOTRECOVERABLE exists. */
    551 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
    552 
    553 /* Define if ENOTSUP exists. */
    554 #define _GLIBCXX_HAVE_ENOTSUP 1
    555 
    556 /* Define if EOVERFLOW exists. */
    557 #define _GLIBCXX_HAVE_EOVERFLOW 1
    558 
    559 /* Define if EOWNERDEAD exists. */
    560 #define _GLIBCXX_HAVE_EOWNERDEAD 1
    561 
    562 /* Define if EPERM exists. */
    563 #define _GLIBCXX_HAVE_EPERM 1
    564 
    565 /* Define if EPROTO exists. */
    566 #define _GLIBCXX_HAVE_EPROTO 1
    567 
    568 /* Define if ETIME exists. */
    569 #define _GLIBCXX_HAVE_ETIME 1
    570 
    571 /* Define if ETIMEDOUT exists. */
    572 #define _GLIBCXX_HAVE_ETIMEDOUT 1
    573 
    574 /* Define if ETXTBSY exists. */
    575 #define _GLIBCXX_HAVE_ETXTBSY 1
    576 
    577 /* Define if EWOULDBLOCK exists. */
    578 #define _GLIBCXX_HAVE_EWOULDBLOCK 1
    579 
    580 /* Define to 1 if you have the <execinfo.h> header file. */
    581 /* #undef _GLIBCXX_HAVE_EXECINFO_H */
    582 
    583 /* Define to 1 if you have the `expf' function. */
    584 #define _GLIBCXX_HAVE_EXPF 1
    585 
    586 /* Define to 1 if you have the `expl' function. */
    587 /* #undef _GLIBCXX_HAVE_EXPL */
    588 
    589 /* Define to 1 if you have the `fabsf' function. */
    590 #define _GLIBCXX_HAVE_FABSF 1
    591 
    592 /* Define to 1 if you have the `fabsl' function. */
    593 #define _GLIBCXX_HAVE_FABSL 1
    594 
    595 /* Define to 1 if you have the <fenv.h> header file. */
    596 #define _GLIBCXX_HAVE_FENV_H 1
    597 
    598 /* Define to 1 if you have the `finite' function. */
    599 #define _GLIBCXX_HAVE_FINITE 1
    600 
    601 /* Define to 1 if you have the `finitef' function. */
    602 #define _GLIBCXX_HAVE_FINITEF 1
    603 
    604 /* Define to 1 if you have the `finitel' function. */
    605 /* #undef _GLIBCXX_HAVE_FINITEL */
    606 
    607 /* Define to 1 if you have the <float.h> header file. */
    608 #define _GLIBCXX_HAVE_FLOAT_H 1
    609 
    610 /* Define to 1 if you have the `floorf' function. */
    611 #define _GLIBCXX_HAVE_FLOORF 1
    612 
    613 /* Define to 1 if you have the `floorl' function. */
    614 #define _GLIBCXX_HAVE_FLOORL 1
    615 
    616 /* Define to 1 if you have the `fmodf' function. */
    617 #define _GLIBCXX_HAVE_FMODF 1
    618 
    619 /* Define to 1 if you have the `fmodl' function. */
    620 /* #undef _GLIBCXX_HAVE_FMODL */
    621 
    622 /* Define to 1 if you have the `fpclass' function. */
    623 /* #undef _GLIBCXX_HAVE_FPCLASS */
    624 
    625 /* Define to 1 if you have the <fp.h> header file. */
    626 /* #undef _GLIBCXX_HAVE_FP_H */
    627 
    628 /* Define to 1 if you have the `frexpf' function. */
    629 #define _GLIBCXX_HAVE_FREXPF 1
    630 
    631 /* Define to 1 if you have the `frexpl' function. */
    632 /* #undef _GLIBCXX_HAVE_FREXPL */
    633 
    634 /* Define if _Unwind_GetIPInfo is available. */
    635 #define _GLIBCXX_HAVE_GETIPINFO 1
    636 
    637 /* Define if gets is available in <stdio.h>. */
    638 #define _GLIBCXX_HAVE_GETS 1
    639 
    640 /* Define to 1 if you have the `hypot' function. */
    641 #define _GLIBCXX_HAVE_HYPOT 1
    642 
    643 /* Define to 1 if you have the `hypotf' function. */
    644 #define _GLIBCXX_HAVE_HYPOTF 1
    645 
    646 /* Define to 1 if you have the `hypotl' function. */
    647 /* #undef _GLIBCXX_HAVE_HYPOTL */
    648 
    649 /* Define if you have the iconv() function. */
    650 /* #undef _GLIBCXX_HAVE_ICONV */
    651 
    652 /* Define to 1 if you have the <ieeefp.h> header file. */
    653 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
    654 
    655 /* Define if int64_t is available in <stdint.h>. */
    656 #define _GLIBCXX_HAVE_INT64_T 1
    657 
    658 /* Define if int64_t is a long. */
    659 /* #undef _GLIBCXX_HAVE_INT64_T_LONG */
    660 
    661 /* Define if int64_t is a long long. */
    662 #define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1
    663 
    664 /* Define to 1 if you have the <inttypes.h> header file. */
    665 #define _GLIBCXX_HAVE_INTTYPES_H 1
    666 
    667 /* Define to 1 if you have the `isinf' function. */
    668 /* #undef _GLIBCXX_HAVE_ISINF */
    669 
    670 /* Define to 1 if you have the `isinff' function. */
    671 /* #undef _GLIBCXX_HAVE_ISINFF */
    672 
    673 /* Define to 1 if you have the `isinfl' function. */
    674 /* #undef _GLIBCXX_HAVE_ISINFL */
    675 
    676 /* Define to 1 if you have the `isnan' function. */
    677 #define _GLIBCXX_HAVE_ISNAN 1
    678 
    679 /* Define to 1 if you have the `isnanf' function. */
    680 #define _GLIBCXX_HAVE_ISNANF 1
    681 
    682 /* Define to 1 if you have the `isnanl' function. */
    683 /* #undef _GLIBCXX_HAVE_ISNANL */
    684 
    685 /* Defined if iswblank exists. */
    686 /* #undef _GLIBCXX_HAVE_ISWBLANK */
    687 
    688 /* Define if LC_MESSAGES is available in <locale.h>. */
    689 #define _GLIBCXX_HAVE_LC_MESSAGES 1
    690 
    691 /* Define to 1 if you have the `ldexpf' function. */
    692 #define _GLIBCXX_HAVE_LDEXPF 1
    693 
    694 /* Define to 1 if you have the `ldexpl' function. */
    695 #define _GLIBCXX_HAVE_LDEXPL 1
    696 
    697 /* Define to 1 if you have the <libintl.h> header file. */
    698 /* #undef _GLIBCXX_HAVE_LIBINTL_H */
    699 
    700 /* Only used in build directory testsuite_hooks.h. */
    701 /* #undef _GLIBCXX_HAVE_LIMIT_AS */
    702 
    703 /* Only used in build directory testsuite_hooks.h. */
    704 /* #undef _GLIBCXX_HAVE_LIMIT_DATA */
    705 
    706 /* Only used in build directory testsuite_hooks.h. */
    707 /* #undef _GLIBCXX_HAVE_LIMIT_FSIZE */
    708 
    709 /* Only used in build directory testsuite_hooks.h. */
    710 /* #undef _GLIBCXX_HAVE_LIMIT_RSS */
    711 
    712 /* Only used in build directory testsuite_hooks.h. */
    713 /* #undef _GLIBCXX_HAVE_LIMIT_VMEM */
    714 
    715 /* Define if futex syscall is available. */
    716 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
    717 
    718 /* Define to 1 if you have the <locale.h> header file. */
    719 #define _GLIBCXX_HAVE_LOCALE_H 1
    720 
    721 /* Define to 1 if you have the `log10f' function. */
    722 #define _GLIBCXX_HAVE_LOG10F 1
    723 
    724 /* Define to 1 if you have the `log10l' function. */
    725 /* #undef _GLIBCXX_HAVE_LOG10L */
    726 
    727 /* Define to 1 if you have the `logf' function. */
    728 #define _GLIBCXX_HAVE_LOGF 1
    729 
    730 /* Define to 1 if you have the `logl' function. */
    731 /* #undef _GLIBCXX_HAVE_LOGL */
    732 
    733 /* Define to 1 if you have the <machine/endian.h> header file. */
    734 #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1
    735 
    736 /* Define to 1 if you have the <machine/param.h> header file. */
    737 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
    738 
    739 /* Define if mbstate_t exists in wchar.h. */
    740 #define _GLIBCXX_HAVE_MBSTATE_T 1
    741 
    742 /* Define to 1 if you have the <memory.h> header file. */
    743 #define _GLIBCXX_HAVE_MEMORY_H 1
    744 
    745 /* Define to 1 if you have the `modf' function. */
    746 #define _GLIBCXX_HAVE_MODF 1
    747 
    748 /* Define to 1 if you have the `modff' function. */
    749 #define _GLIBCXX_HAVE_MODFF 1
    750 
    751 /* Define to 1 if you have the `modfl' function. */
    752 /* #undef _GLIBCXX_HAVE_MODFL */
    753 
    754 /* Define to 1 if you have the <nan.h> header file. */
    755 /* #undef _GLIBCXX_HAVE_NAN_H */
    756 
    757 /* Define if poll is available in <poll.h>. */
    758 #define _GLIBCXX_HAVE_POLL 1
    759 
    760 /* Define to 1 if you have the `powf' function. */
    761 #define _GLIBCXX_HAVE_POWF 1
    762 
    763 /* Define to 1 if you have the `powl' function. */
    764 /* #undef _GLIBCXX_HAVE_POWL */
    765 
    766 /* Define to 1 if you have the `qfpclass' function. */
    767 /* #undef _GLIBCXX_HAVE_QFPCLASS */
    768 
    769 /* Define to 1 if you have the `quick_exit' function. */
    770 /* #undef _GLIBCXX_HAVE_QUICK_EXIT */
    771 
    772 /* Define to 1 if you have the `setenv' function. */
    773 /* #undef _GLIBCXX_HAVE_SETENV */
    774 
    775 /* Define to 1 if you have the `sincos' function. */
    776 #define _GLIBCXX_HAVE_SINCOS 1
    777 
    778 /* Define to 1 if you have the `sincosf' function. */
    779 #define _GLIBCXX_HAVE_SINCOSF 1
    780 
    781 /* Define to 1 if you have the `sincosl' function. */
    782 #define _GLIBCXX_HAVE_SINCOSL 1
    783 
    784 /* Define to 1 if you have the `sinf' function. */
    785 #define _GLIBCXX_HAVE_SINF 1
    786 
    787 /* Define to 1 if you have the `sinhf' function. */
    788 #define _GLIBCXX_HAVE_SINHF 1
    789 
    790 /* Define to 1 if you have the `sinhl' function. */
    791 /* #undef _GLIBCXX_HAVE_SINHL */
    792 
    793 /* Define to 1 if you have the `sinl' function. */
    794 /* #undef _GLIBCXX_HAVE_SINL */
    795 
    796 /* Defined if sleep exists. */
    797 /* #undef _GLIBCXX_HAVE_SLEEP */
    798 
    799 /* Define to 1 if you have the `sqrtf' function. */
    800 #define _GLIBCXX_HAVE_SQRTF 1
    801 
    802 /* Define to 1 if you have the `sqrtl' function. */
    803 /* #undef _GLIBCXX_HAVE_SQRTL */
    804 
    805 /* Define to 1 if you have the <stdalign.h> header file. */
    806 #define _GLIBCXX_HAVE_STDALIGN_H 1
    807 
    808 /* Define to 1 if you have the <stdbool.h> header file. */
    809 #define _GLIBCXX_HAVE_STDBOOL_H 1
    810 
    811 /* Define to 1 if you have the <stdint.h> header file. */
    812 #define _GLIBCXX_HAVE_STDINT_H 1
    813 
    814 /* Define to 1 if you have the <stdlib.h> header file. */
    815 #define _GLIBCXX_HAVE_STDLIB_H 1
    816 
    817 /* Define if strerror_l is available in <string.h>. */
    818 /* #undef _GLIBCXX_HAVE_STRERROR_L */
    819 
    820 /* Define if strerror_r is available in <string.h>. */
    821 #define _GLIBCXX_HAVE_STRERROR_R 1
    822 
    823 /* Define to 1 if you have the <strings.h> header file. */
    824 #define _GLIBCXX_HAVE_STRINGS_H 1
    825 
    826 /* Define to 1 if you have the <string.h> header file. */
    827 #define _GLIBCXX_HAVE_STRING_H 1
    828 
    829 /* Define to 1 if you have the `strtof' function. */
    830 /* #undef _GLIBCXX_HAVE_STRTOF */
    831 
    832 /* Define to 1 if you have the `strtold' function. */
    833 /* #undef _GLIBCXX_HAVE_STRTOLD */
    834 
    835 /* Define if strxfrm_l is available in <string.h>. */
    836 /* #undef _GLIBCXX_HAVE_STRXFRM_L */
    837 
    838 /* Define to 1 if the target runtime linker supports binding the same symbol
    839    to different versions. */
    840 /* #undef _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT */
    841 
    842 /* Define to 1 if you have the <sys/filio.h> header file. */
    843 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
    844 
    845 /* Define to 1 if you have the <sys/ioctl.h> header file. */
    846 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
    847 
    848 /* Define to 1 if you have the <sys/ipc.h> header file. */
    849 #define _GLIBCXX_HAVE_SYS_IPC_H 1
    850 
    851 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
    852 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
    853 
    854 /* Define to 1 if you have the <sys/machine.h> header file. */
    855 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
    856 
    857 /* Define to 1 if you have the <sys/param.h> header file. */
    858 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
    859 
    860 /* Define to 1 if you have the <sys/resource.h> header file. */
    861 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
    862 
    863 /* Define to 1 if you have the <sys/sdt.h> header file. */
    864 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
    865 
    866 /* Define to 1 if you have the <sys/sem.h> header file. */
    867 /* #undef _GLIBCXX_HAVE_SYS_SEM_H */
    868 
    869 /* Define to 1 if you have the <sys/stat.h> header file. */
    870 #define _GLIBCXX_HAVE_SYS_STAT_H 1
    871 
    872 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
    873 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
    874 
    875 /* Define to 1 if you have the <sys/time.h> header file. */
    876 #define _GLIBCXX_HAVE_SYS_TIME_H 1
    877 
    878 /* Define to 1 if you have the <sys/types.h> header file. */
    879 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
    880 
    881 /* Define to 1 if you have the <sys/uio.h> header file. */
    882 #define _GLIBCXX_HAVE_SYS_UIO_H 1
    883 
    884 /* Define if S_IFREG is available in <sys/stat.h>. */
    885 /* #undef _GLIBCXX_HAVE_S_IFREG */
    886 
    887 /* Define if S_IFREG is available in <sys/stat.h>. */
    888 #define _GLIBCXX_HAVE_S_ISREG 1
    889 
    890 /* Define to 1 if you have the `tanf' function. */
    891 #define _GLIBCXX_HAVE_TANF 1
    892 
    893 /* Define to 1 if you have the `tanhf' function. */
    894 #define _GLIBCXX_HAVE_TANHF 1
    895 
    896 /* Define to 1 if you have the `tanhl' function. */
    897 /* #undef _GLIBCXX_HAVE_TANHL */
    898 
    899 /* Define to 1 if you have the `tanl' function. */
    900 /* #undef _GLIBCXX_HAVE_TANL */
    901 
    902 /* Define to 1 if you have the <tgmath.h> header file. */
    903 /* #undef _GLIBCXX_HAVE_TGMATH_H */
    904 
    905 /* Define to 1 if the target supports thread-local storage. */
    906 /* #undef _GLIBCXX_HAVE_TLS */
    907 
    908 /* Define to 1 if you have the <unistd.h> header file. */
    909 #define _GLIBCXX_HAVE_UNISTD_H 1
    910 
    911 /* Defined if usleep exists. */
    912 /* #undef _GLIBCXX_HAVE_USLEEP */
    913 
    914 /* Defined if vfwscanf exists. */
    915 /* #undef _GLIBCXX_HAVE_VFWSCANF */
    916 
    917 /* Defined if vswscanf exists. */
    918 /* #undef _GLIBCXX_HAVE_VSWSCANF */
    919 
    920 /* Defined if vwscanf exists. */
    921 /* #undef _GLIBCXX_HAVE_VWSCANF */
    922 
    923 /* Define to 1 if you have the <wchar.h> header file. */
    924 #define _GLIBCXX_HAVE_WCHAR_H 1
    925 
    926 /* Defined if wcstof exists. */
    927 /* #undef _GLIBCXX_HAVE_WCSTOF */
    928 
    929 /* Define to 1 if you have the <wctype.h> header file. */
    930 #define _GLIBCXX_HAVE_WCTYPE_H 1
    931 
    932 /* Defined if Sleep exists. */
    933 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
    934 
    935 /* Define if writev is available in <sys/uio.h>. */
    936 #define _GLIBCXX_HAVE_WRITEV 1
    937 
    938 /* Define to 1 if you have the `_acosf' function. */
    939 /* #undef _GLIBCXX_HAVE__ACOSF */
    940 
    941 /* Define to 1 if you have the `_acosl' function. */
    942 /* #undef _GLIBCXX_HAVE__ACOSL */
    943 
    944 /* Define to 1 if you have the `_asinf' function. */
    945 /* #undef _GLIBCXX_HAVE__ASINF */
    946 
    947 /* Define to 1 if you have the `_asinl' function. */
    948 /* #undef _GLIBCXX_HAVE__ASINL */
    949 
    950 /* Define to 1 if you have the `_atan2f' function. */
    951 /* #undef _GLIBCXX_HAVE__ATAN2F */
    952 
    953 /* Define to 1 if you have the `_atan2l' function. */
    954 /* #undef _GLIBCXX_HAVE__ATAN2L */
    955 
    956 /* Define to 1 if you have the `_atanf' function. */
    957 /* #undef _GLIBCXX_HAVE__ATANF */
    958 
    959 /* Define to 1 if you have the `_atanl' function. */
    960 /* #undef _GLIBCXX_HAVE__ATANL */
    961 
    962 /* Define to 1 if you have the `_ceilf' function. */
    963 /* #undef _GLIBCXX_HAVE__CEILF */
    964 
    965 /* Define to 1 if you have the `_ceill' function. */
    966 /* #undef _GLIBCXX_HAVE__CEILL */
    967 
    968 /* Define to 1 if you have the `_cosf' function. */
    969 /* #undef _GLIBCXX_HAVE__COSF */
    970 
    971 /* Define to 1 if you have the `_coshf' function. */
    972 /* #undef _GLIBCXX_HAVE__COSHF */
    973 
    974 /* Define to 1 if you have the `_coshl' function. */
    975 /* #undef _GLIBCXX_HAVE__COSHL */
    976 
    977 /* Define to 1 if you have the `_cosl' function. */
    978 /* #undef _GLIBCXX_HAVE__COSL */
    979 
    980 /* Define to 1 if you have the `_expf' function. */
    981 /* #undef _GLIBCXX_HAVE__EXPF */
    982 
    983 /* Define to 1 if you have the `_expl' function. */
    984 /* #undef _GLIBCXX_HAVE__EXPL */
    985 
    986 /* Define to 1 if you have the `_fabsf' function. */
    987 /* #undef _GLIBCXX_HAVE__FABSF */
    988 
    989 /* Define to 1 if you have the `_fabsl' function. */
    990 /* #undef _GLIBCXX_HAVE__FABSL */
    991 
    992 /* Define to 1 if you have the `_finite' function. */
    993 /* #undef _GLIBCXX_HAVE__FINITE */
    994 
    995 /* Define to 1 if you have the `_finitef' function. */
    996 /* #undef _GLIBCXX_HAVE__FINITEF */
    997 
    998 /* Define to 1 if you have the `_finitel' function. */
    999 /* #undef _GLIBCXX_HAVE__FINITEL */
   1000 
   1001 /* Define to 1 if you have the `_floorf' function. */
   1002 /* #undef _GLIBCXX_HAVE__FLOORF */
   1003 
   1004 /* Define to 1 if you have the `_floorl' function. */
   1005 /* #undef _GLIBCXX_HAVE__FLOORL */
   1006 
   1007 /* Define to 1 if you have the `_fmodf' function. */
   1008 /* #undef _GLIBCXX_HAVE__FMODF */
   1009 
   1010 /* Define to 1 if you have the `_fmodl' function. */
   1011 /* #undef _GLIBCXX_HAVE__FMODL */
   1012 
   1013 /* Define to 1 if you have the `_fpclass' function. */
   1014 /* #undef _GLIBCXX_HAVE__FPCLASS */
   1015 
   1016 /* Define to 1 if you have the `_frexpf' function. */
   1017 /* #undef _GLIBCXX_HAVE__FREXPF */
   1018 
   1019 /* Define to 1 if you have the `_frexpl' function. */
   1020 /* #undef _GLIBCXX_HAVE__FREXPL */
   1021 
   1022 /* Define to 1 if you have the `_hypot' function. */
   1023 /* #undef _GLIBCXX_HAVE__HYPOT */
   1024 
   1025 /* Define to 1 if you have the `_hypotf' function. */
   1026 /* #undef _GLIBCXX_HAVE__HYPOTF */
   1027 
   1028 /* Define to 1 if you have the `_hypotl' function. */
   1029 /* #undef _GLIBCXX_HAVE__HYPOTL */
   1030 
   1031 /* Define to 1 if you have the `_isinf' function. */
   1032 /* #undef _GLIBCXX_HAVE__ISINF */
   1033 
   1034 /* Define to 1 if you have the `_isinff' function. */
   1035 /* #undef _GLIBCXX_HAVE__ISINFF */
   1036 
   1037 /* Define to 1 if you have the `_isinfl' function. */
   1038 /* #undef _GLIBCXX_HAVE__ISINFL */
   1039 
   1040 /* Define to 1 if you have the `_isnan' function. */
   1041 /* #undef _GLIBCXX_HAVE__ISNAN */
   1042 
   1043 /* Define to 1 if you have the `_isnanf' function. */
   1044 /* #undef _GLIBCXX_HAVE__ISNANF */
   1045 
   1046 /* Define to 1 if you have the `_isnanl' function. */
   1047 /* #undef _GLIBCXX_HAVE__ISNANL */
   1048 
   1049 /* Define to 1 if you have the `_ldexpf' function. */
   1050 /* #undef _GLIBCXX_HAVE__LDEXPF */
   1051 
   1052 /* Define to 1 if you have the `_ldexpl' function. */
   1053 /* #undef _GLIBCXX_HAVE__LDEXPL */
   1054 
   1055 /* Define to 1 if you have the `_log10f' function. */
   1056 /* #undef _GLIBCXX_HAVE__LOG10F */
   1057 
   1058 /* Define to 1 if you have the `_log10l' function. */
   1059 /* #undef _GLIBCXX_HAVE__LOG10L */
   1060 
   1061 /* Define to 1 if you have the `_logf' function. */
   1062 /* #undef _GLIBCXX_HAVE__LOGF */
   1063 
   1064 /* Define to 1 if you have the `_logl' function. */
   1065 /* #undef _GLIBCXX_HAVE__LOGL */
   1066 
   1067 /* Define to 1 if you have the `_modf' function. */
   1068 /* #undef _GLIBCXX_HAVE__MODF */
   1069 
   1070 /* Define to 1 if you have the `_modff' function. */
   1071 /* #undef _GLIBCXX_HAVE__MODFF */
   1072 
   1073 /* Define to 1 if you have the `_modfl' function. */
   1074 /* #undef _GLIBCXX_HAVE__MODFL */
   1075 
   1076 /* Define to 1 if you have the `_powf' function. */
   1077 /* #undef _GLIBCXX_HAVE__POWF */
   1078 
   1079 /* Define to 1 if you have the `_powl' function. */
   1080 /* #undef _GLIBCXX_HAVE__POWL */
   1081 
   1082 /* Define to 1 if you have the `_qfpclass' function. */
   1083 /* #undef _GLIBCXX_HAVE__QFPCLASS */
   1084 
   1085 /* Define to 1 if you have the `_sincos' function. */
   1086 /* #undef _GLIBCXX_HAVE__SINCOS */
   1087 
   1088 /* Define to 1 if you have the `_sincosf' function. */
   1089 /* #undef _GLIBCXX_HAVE__SINCOSF */
   1090 
   1091 /* Define to 1 if you have the `_sincosl' function. */
   1092 /* #undef _GLIBCXX_HAVE__SINCOSL */
   1093 
   1094 /* Define to 1 if you have the `_sinf' function. */
   1095 /* #undef _GLIBCXX_HAVE__SINF */
   1096 
   1097 /* Define to 1 if you have the `_sinhf' function. */
   1098 /* #undef _GLIBCXX_HAVE__SINHF */
   1099 
   1100 /* Define to 1 if you have the `_sinhl' function. */
   1101 /* #undef _GLIBCXX_HAVE__SINHL */
   1102 
   1103 /* Define to 1 if you have the `_sinl' function. */
   1104 /* #undef _GLIBCXX_HAVE__SINL */
   1105 
   1106 /* Define to 1 if you have the `_sqrtf' function. */
   1107 /* #undef _GLIBCXX_HAVE__SQRTF */
   1108 
   1109 /* Define to 1 if you have the `_sqrtl' function. */
   1110 /* #undef _GLIBCXX_HAVE__SQRTL */
   1111 
   1112 /* Define to 1 if you have the `_tanf' function. */
   1113 /* #undef _GLIBCXX_HAVE__TANF */
   1114 
   1115 /* Define to 1 if you have the `_tanhf' function. */
   1116 /* #undef _GLIBCXX_HAVE__TANHF */
   1117 
   1118 /* Define to 1 if you have the `_tanhl' function. */
   1119 /* #undef _GLIBCXX_HAVE__TANHL */
   1120 
   1121 /* Define to 1 if you have the `_tanl' function. */
   1122 /* #undef _GLIBCXX_HAVE__TANL */
   1123 
   1124 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
   1125 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL */
   1126 
   1127 /* Define as const if the declaration of iconv() needs const. */
   1128 /* #undef _GLIBCXX_ICONV_CONST */
   1129 
   1130 /* Define to the sub-directory in which libtool stores uninstalled libraries.
   1131    */
   1132 #define LT_OBJDIR ".libs/"
   1133 
   1134 /* Name of package */
   1135 /* #undef _GLIBCXX_PACKAGE */
   1136 
   1137 /* Define to the address where bug reports for this package should be sent. */
   1138 #define _GLIBCXX_PACKAGE_BUGREPORT ""
   1139 
   1140 /* Define to the full name of this package. */
   1141 #define _GLIBCXX_PACKAGE_NAME "package-unused"
   1142 
   1143 /* Define to the full name and version of this package. */
   1144 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
   1145 
   1146 /* Define to the one symbol short name of this package. */
   1147 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
   1148 
   1149 /* Define to the home page for this package. */
   1150 #define _GLIBCXX_PACKAGE_URL ""
   1151 
   1152 /* Define to the version of this package. */
   1153 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
   1154 
   1155 /* The size of `char', as computed by sizeof. */
   1156 /* #undef SIZEOF_CHAR */
   1157 
   1158 /* The size of `int', as computed by sizeof. */
   1159 /* #undef SIZEOF_INT */
   1160 
   1161 /* The size of `long', as computed by sizeof. */
   1162 /* #undef SIZEOF_LONG */
   1163 
   1164 /* The size of `short', as computed by sizeof. */
   1165 /* #undef SIZEOF_SHORT */
   1166 
   1167 /* The size of `void *', as computed by sizeof. */
   1168 /* #undef SIZEOF_VOID_P */
   1169 
   1170 /* Define to 1 if you have the ANSI C header files. */
   1171 #define STDC_HEADERS 1
   1172 
   1173 /* Version number of package */
   1174 /* #undef _GLIBCXX_VERSION */
   1175 
   1176 /* Define if the compiler supports C++11 atomics. */
   1177 #define _GLIBCXX_ATOMIC_BUILTINS 1
   1178 
   1179 /* Define to use concept checking code from the boost libraries. */
   1180 /* #undef _GLIBCXX_CONCEPT_CHECKS */
   1181 
   1182 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
   1183    undefined for platform defaults */
   1184 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
   1185 
   1186 /* Define if gthreads library is available. */
   1187 #define _GLIBCXX_HAS_GTHREADS 1
   1188 
   1189 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
   1190 #define _GLIBCXX_HOSTED 1
   1191 
   1192 /* Define if compatibility should be provided for -mlong-double-64. */
   1193 
   1194 /* Define if ptrdiff_t is int. */
   1195 #define _GLIBCXX_PTRDIFF_T_IS_INT 1
   1196 
   1197 /* Define if using setrlimit to set resource limits during "make check" */
   1198 /* #undef _GLIBCXX_RES_LIMITS */
   1199 
   1200 /* Define if size_t is unsigned int. */
   1201 #define _GLIBCXX_SIZE_T_IS_UINT 1
   1202 
   1203 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
   1204 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
   1205 
   1206 /* Define to the value of the EOF integer constant. */
   1207 #define _GLIBCXX_STDIO_EOF -1
   1208 
   1209 /* Define to the value of the SEEK_CUR integer constant. */
   1210 #define _GLIBCXX_STDIO_SEEK_CUR 1
   1211 
   1212 /* Define to the value of the SEEK_END integer constant. */
   1213 #define _GLIBCXX_STDIO_SEEK_END 2
   1214 
   1215 /* Define to use symbol versioning in the shared library. */
   1216 /* #undef _GLIBCXX_SYMVER */
   1217 
   1218 /* Define to use darwin versioning in the shared library. */
   1219 /* #undef _GLIBCXX_SYMVER_DARWIN */
   1220 
   1221 /* Define to use GNU versioning in the shared library. */
   1222 /* #undef _GLIBCXX_SYMVER_GNU */
   1223 
   1224 /* Define to use GNU namespace versioning in the shared library. */
   1225 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
   1226 
   1227 /* Define to use Sun versioning in the shared library. */
   1228 /* #undef _GLIBCXX_SYMVER_SUN */
   1229 
   1230 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
   1231    <stdio.h>, and <stdlib.h> can be used or exposed. */
   1232 /* #undef _GLIBCXX_USE_C99 */
   1233 
   1234 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
   1235    compiler builtins for these functions requires corresponding C99 library
   1236    functions to be present. */
   1237 /* #undef _GLIBCXX_USE_C99_COMPLEX */
   1238 
   1239 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
   1240    Using compiler builtins for these functions requires corresponding C99
   1241    library functions to be present. */
   1242 /* #undef _GLIBCXX_USE_C99_COMPLEX_TR1 */
   1243 
   1244 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
   1245    namespace std::tr1. */
   1246 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
   1247 
   1248 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
   1249    namespace std::tr1. */
   1250 #define _GLIBCXX_USE_C99_FENV_TR1 1
   1251 
   1252 /* Define if C99 functions in <inttypes.h> should be imported in
   1253    <tr1/cinttypes> in namespace std::tr1. */
   1254 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
   1255 
   1256 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
   1257    <tr1/cinttypes> in namespace std::tr1. */
   1258 /* #undef _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 */
   1259 
   1260 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
   1261    in namespace std. */
   1262 #define _GLIBCXX_USE_C99_MATH 1
   1263 
   1264 /* Define if C99 functions or macros in <math.h> should be imported in
   1265    <tr1/cmath> in namespace std::tr1. */
   1266 /* #undef _GLIBCXX_USE_C99_MATH_TR1 */
   1267 
   1268 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
   1269    namespace std::tr1. */
   1270 #define _GLIBCXX_USE_C99_STDINT_TR1 1
   1271 
   1272 /* Defined if clock_gettime has monotonic clock support. */
   1273 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
   1274 
   1275 /* Defined if clock_gettime has realtime clock support. */
   1276 #define _GLIBCXX_USE_CLOCK_REALTIME 1
   1277 
   1278 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
   1279    this host. */
   1280 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
   1281 
   1282 /* Define if __float128 is supported on this host. */
   1283 #define _GLIBCXX_USE_FLOAT128 1
   1284 
   1285 /* Defined if gettimeofday is available. */
   1286 #define _GLIBCXX_USE_GETTIMEOFDAY 1
   1287 
   1288 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
   1289 /* #undef _GLIBCXX_USE_GET_NPROCS */
   1290 
   1291 /* Define if __int128 is supported on this host. */
   1292 /* #undef _GLIBCXX_USE_INT128 */
   1293 
   1294 /* Define if LFS support is available. */
   1295 /* #undef _GLIBCXX_USE_LFS */
   1296 
   1297 /* Define if code specialized for long long should be used. */
   1298 #define _GLIBCXX_USE_LONG_LONG 1
   1299 
   1300 /* Defined if nanosleep is available. */
   1301 #define _GLIBCXX_USE_NANOSLEEP 1
   1302 
   1303 /* Define if NLS translations are to be used. */
   1304 /* #undef _GLIBCXX_USE_NLS */
   1305 
   1306 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
   1307 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
   1308 
   1309 /* Define if /dev/random and /dev/urandom are available for the random_device
   1310    of TR1 (Chapter 5.1). */
   1311 #define _GLIBCXX_USE_RANDOM_TR1 1
   1312 
   1313 /* Defined if sched_yield is available. */
   1314 #define _GLIBCXX_USE_SCHED_YIELD 1
   1315 
   1316 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
   1317 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
   1318 
   1319 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
   1320 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
   1321 
   1322 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
   1323 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
   1324 
   1325 /* Define if code specialized for wchar_t should be used. */
   1326 #define _GLIBCXX_USE_WCHAR_T 1
   1327 
   1328 /* Define to 1 if a verbose library is built, or 0 otherwise. */
   1329 #define _GLIBCXX_VERBOSE 1
   1330 
   1331 /* Defined if as can handle rdrand. */
   1332 #define _GLIBCXX_X86_RDRAND 1
   1333 
   1334 /* Define to 1 if mutex_timedlock is available. */
   1335 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 0
   1336 
   1337 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
   1338 # define _GLIBCXX_HAVE_ACOSF 1
   1339 # define acosf _acosf
   1340 #endif
   1341 
   1342 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
   1343 # define _GLIBCXX_HAVE_ACOSL 1
   1344 # define acosl _acosl
   1345 #endif
   1346 
   1347 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
   1348 # define _GLIBCXX_HAVE_ASINF 1
   1349 # define asinf _asinf
   1350 #endif
   1351 
   1352 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
   1353 # define _GLIBCXX_HAVE_ASINL 1
   1354 # define asinl _asinl
   1355 #endif
   1356 
   1357 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
   1358 # define _GLIBCXX_HAVE_ATAN2F 1
   1359 # define atan2f _atan2f
   1360 #endif
   1361 
   1362 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
   1363 # define _GLIBCXX_HAVE_ATAN2L 1
   1364 # define atan2l _atan2l
   1365 #endif
   1366 
   1367 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
   1368 # define _GLIBCXX_HAVE_ATANF 1
   1369 # define atanf _atanf
   1370 #endif
   1371 
   1372 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
   1373 # define _GLIBCXX_HAVE_ATANL 1
   1374 # define atanl _atanl
   1375 #endif
   1376 
   1377 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
   1378 # define _GLIBCXX_HAVE_CEILF 1
   1379 # define ceilf _ceilf
   1380 #endif
   1381 
   1382 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
   1383 # define _GLIBCXX_HAVE_CEILL 1
   1384 # define ceill _ceill
   1385 #endif
   1386 
   1387 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
   1388 # define _GLIBCXX_HAVE_COSF 1
   1389 # define cosf _cosf
   1390 #endif
   1391 
   1392 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
   1393 # define _GLIBCXX_HAVE_COSHF 1
   1394 # define coshf _coshf
   1395 #endif
   1396 
   1397 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
   1398 # define _GLIBCXX_HAVE_COSHL 1
   1399 # define coshl _coshl
   1400 #endif
   1401 
   1402 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
   1403 # define _GLIBCXX_HAVE_COSL 1
   1404 # define cosl _cosl
   1405 #endif
   1406 
   1407 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
   1408 # define _GLIBCXX_HAVE_EXPF 1
   1409 # define expf _expf
   1410 #endif
   1411 
   1412 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
   1413 # define _GLIBCXX_HAVE_EXPL 1
   1414 # define expl _expl
   1415 #endif
   1416 
   1417 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
   1418 # define _GLIBCXX_HAVE_FABSF 1
   1419 # define fabsf _fabsf
   1420 #endif
   1421 
   1422 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
   1423 # define _GLIBCXX_HAVE_FABSL 1
   1424 # define fabsl _fabsl
   1425 #endif
   1426 
   1427 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
   1428 # define _GLIBCXX_HAVE_FINITE 1
   1429 # define finite _finite
   1430 #endif
   1431 
   1432 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
   1433 # define _GLIBCXX_HAVE_FINITEF 1
   1434 # define finitef _finitef
   1435 #endif
   1436 
   1437 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
   1438 # define _GLIBCXX_HAVE_FINITEL 1
   1439 # define finitel _finitel
   1440 #endif
   1441 
   1442 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
   1443 # define _GLIBCXX_HAVE_FLOORF 1
   1444 # define floorf _floorf
   1445 #endif
   1446 
   1447 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
   1448 # define _GLIBCXX_HAVE_FLOORL 1
   1449 # define floorl _floorl
   1450 #endif
   1451 
   1452 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
   1453 # define _GLIBCXX_HAVE_FMODF 1
   1454 # define fmodf _fmodf
   1455 #endif
   1456 
   1457 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
   1458 # define _GLIBCXX_HAVE_FMODL 1
   1459 # define fmodl _fmodl
   1460 #endif
   1461 
   1462 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
   1463 # define _GLIBCXX_HAVE_FPCLASS 1
   1464 # define fpclass _fpclass
   1465 #endif
   1466 
   1467 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
   1468 # define _GLIBCXX_HAVE_FREXPF 1
   1469 # define frexpf _frexpf
   1470 #endif
   1471 
   1472 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
   1473 # define _GLIBCXX_HAVE_FREXPL 1
   1474 # define frexpl _frexpl
   1475 #endif
   1476 
   1477 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
   1478 # define _GLIBCXX_HAVE_HYPOT 1
   1479 # define hypot _hypot
   1480 #endif
   1481 
   1482 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
   1483 # define _GLIBCXX_HAVE_HYPOTF 1
   1484 # define hypotf _hypotf
   1485 #endif
   1486 
   1487 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
   1488 # define _GLIBCXX_HAVE_HYPOTL 1
   1489 # define hypotl _hypotl
   1490 #endif
   1491 
   1492 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
   1493 # define _GLIBCXX_HAVE_ISINF 1
   1494 # define isinf _isinf
   1495 #endif
   1496 
   1497 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
   1498 # define _GLIBCXX_HAVE_ISINFF 1
   1499 # define isinff _isinff
   1500 #endif
   1501 
   1502 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
   1503 # define _GLIBCXX_HAVE_ISINFL 1
   1504 # define isinfl _isinfl
   1505 #endif
   1506 
   1507 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
   1508 # define _GLIBCXX_HAVE_ISNAN 1
   1509 # define isnan _isnan
   1510 #endif
   1511 
   1512 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
   1513 # define _GLIBCXX_HAVE_ISNANF 1
   1514 # define isnanf _isnanf
   1515 #endif
   1516 
   1517 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
   1518 # define _GLIBCXX_HAVE_ISNANL 1
   1519 # define isnanl _isnanl
   1520 #endif
   1521 
   1522 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
   1523 # define _GLIBCXX_HAVE_LDEXPF 1
   1524 # define ldexpf _ldexpf
   1525 #endif
   1526 
   1527 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
   1528 # define _GLIBCXX_HAVE_LDEXPL 1
   1529 # define ldexpl _ldexpl
   1530 #endif
   1531 
   1532 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
   1533 # define _GLIBCXX_HAVE_LOG10F 1
   1534 # define log10f _log10f
   1535 #endif
   1536 
   1537 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
   1538 # define _GLIBCXX_HAVE_LOG10L 1
   1539 # define log10l _log10l
   1540 #endif
   1541 
   1542 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
   1543 # define _GLIBCXX_HAVE_LOGF 1
   1544 # define logf _logf
   1545 #endif
   1546 
   1547 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
   1548 # define _GLIBCXX_HAVE_LOGL 1
   1549 # define logl _logl
   1550 #endif
   1551 
   1552 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
   1553 # define _GLIBCXX_HAVE_MODF 1
   1554 # define modf _modf
   1555 #endif
   1556 
   1557 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
   1558 # define _GLIBCXX_HAVE_MODFF 1
   1559 # define modff _modff
   1560 #endif
   1561 
   1562 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
   1563 # define _GLIBCXX_HAVE_MODFL 1
   1564 # define modfl _modfl
   1565 #endif
   1566 
   1567 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
   1568 # define _GLIBCXX_HAVE_POWF 1
   1569 # define powf _powf
   1570 #endif
   1571 
   1572 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
   1573 # define _GLIBCXX_HAVE_POWL 1
   1574 # define powl _powl
   1575 #endif
   1576 
   1577 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
   1578 # define _GLIBCXX_HAVE_QFPCLASS 1
   1579 # define qfpclass _qfpclass
   1580 #endif
   1581 
   1582 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
   1583 # define _GLIBCXX_HAVE_SINCOS 1
   1584 # define sincos _sincos
   1585 #endif
   1586 
   1587 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
   1588 # define _GLIBCXX_HAVE_SINCOSF 1
   1589 # define sincosf _sincosf
   1590 #endif
   1591 
   1592 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
   1593 # define _GLIBCXX_HAVE_SINCOSL 1
   1594 # define sincosl _sincosl
   1595 #endif
   1596 
   1597 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
   1598 # define _GLIBCXX_HAVE_SINF 1
   1599 # define sinf _sinf
   1600 #endif
   1601 
   1602 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
   1603 # define _GLIBCXX_HAVE_SINHF 1
   1604 # define sinhf _sinhf
   1605 #endif
   1606 
   1607 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
   1608 # define _GLIBCXX_HAVE_SINHL 1
   1609 # define sinhl _sinhl
   1610 #endif
   1611 
   1612 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
   1613 # define _GLIBCXX_HAVE_SINL 1
   1614 # define sinl _sinl
   1615 #endif
   1616 
   1617 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
   1618 # define _GLIBCXX_HAVE_SQRTF 1
   1619 # define sqrtf _sqrtf
   1620 #endif
   1621 
   1622 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
   1623 # define _GLIBCXX_HAVE_SQRTL 1
   1624 # define sqrtl _sqrtl
   1625 #endif
   1626 
   1627 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
   1628 # define _GLIBCXX_HAVE_STRTOF 1
   1629 # define strtof _strtof
   1630 #endif
   1631 
   1632 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
   1633 # define _GLIBCXX_HAVE_STRTOLD 1
   1634 # define strtold _strtold
   1635 #endif
   1636 
   1637 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
   1638 # define _GLIBCXX_HAVE_TANF 1
   1639 # define tanf _tanf
   1640 #endif
   1641 
   1642 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
   1643 # define _GLIBCXX_HAVE_TANHF 1
   1644 # define tanhf _tanhf
   1645 #endif
   1646 
   1647 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
   1648 # define _GLIBCXX_HAVE_TANHL 1
   1649 # define tanhl _tanhl
   1650 #endif
   1651 
   1652 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
   1653 # define _GLIBCXX_HAVE_TANL 1
   1654 # define tanl _tanl
   1655 #endif
   1656 
   1657 #endif // _GLIBCXX_CXX_CONFIG_H
   1658