libstdc++
c++config.h
Go to the documentation of this file.
00001 // Predefined symbols and macros -*- C++ -*-
00002 
00003 // Copyright (C) 1997-2013 Free Software Foundation, Inc.
00004 //
00005 // This file is part of the GNU ISO C++ Library.  This library is free
00006 // software; you can redistribute it and/or modify it under the
00007 // terms of the GNU General Public License as published by the
00008 // Free Software Foundation; either version 3, or (at your option)
00009 // any later version.
00010 
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 // GNU General Public License for more details.
00015 
00016 // Under Section 7 of GPL version 3, you are granted additional
00017 // permissions described in the GCC Runtime Library Exception, version
00018 // 3.1, as published by the Free Software Foundation.
00019 
00020 // You should have received a copy of the GNU General Public License and
00021 // a copy of the GCC Runtime Library Exception along with this program;
00022 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
00023 // <http://www.gnu.org/licenses/>.
00024 
00025 /** @file bits/c++config.h
00026  *  This is an internal header file, included by other library headers.
00027  *  Do not attempt to use it directly. @headername{iosfwd}
00028  */
00029 
00030 #ifndef _GLIBCXX_CXX_CONFIG_H
00031 #define _GLIBCXX_CXX_CONFIG_H 1
00032 
00033 // The current version of the C++ library in compressed ISO date format.
00034 #define __GLIBCXX__ 20130715
00035 
00036 // Macros for various attributes.
00037 //   _GLIBCXX_PURE
00038 //   _GLIBCXX_CONST
00039 //   _GLIBCXX_NORETURN
00040 //   _GLIBCXX_NOTHROW
00041 //   _GLIBCXX_VISIBILITY
00042 #ifndef _GLIBCXX_PURE
00043 # define _GLIBCXX_PURE __attribute__ ((__pure__))
00044 #endif
00045 
00046 #ifndef _GLIBCXX_CONST
00047 # define _GLIBCXX_CONST __attribute__ ((__const__))
00048 #endif
00049 
00050 #ifndef _GLIBCXX_NORETURN
00051 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
00052 #endif
00053 
00054 // See below for C++
00055 #ifndef _GLIBCXX_NOTHROW
00056 # ifndef __cplusplus
00057 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
00058 # endif
00059 #endif
00060 
00061 // Macros for visibility attributes.
00062 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
00063 //   _GLIBCXX_VISIBILITY
00064 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
00065 
00066 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
00067 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
00068 #else
00069 // If this is not supplied by the OS-specific or CPU-specific
00070 // headers included below, it will be defined to an empty default.
00071 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
00072 #endif
00073 
00074 // Macros for deprecated attributes.
00075 //   _GLIBCXX_USE_DEPRECATED
00076 //   _GLIBCXX_DEPRECATED
00077 #ifndef _GLIBCXX_USE_DEPRECATED
00078 # define _GLIBCXX_USE_DEPRECATED 1
00079 #endif
00080 
00081 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
00082 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
00083 #else
00084 # define _GLIBCXX_DEPRECATED
00085 #endif
00086 
00087 // Macros for ABI tag attributes.
00088 #ifndef _GLIBCXX_ABI_TAG_CXX11
00089 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
00090 #endif
00091 
00092 
00093 #if __cplusplus
00094 
00095 // Macro for constexpr, to support in mixed 03/0x mode.
00096 #ifndef _GLIBCXX_CONSTEXPR
00097 # if __cplusplus >= 201103L
00098 #  define _GLIBCXX_CONSTEXPR constexpr
00099 #  define _GLIBCXX_USE_CONSTEXPR constexpr
00100 # else
00101 #  define _GLIBCXX_CONSTEXPR
00102 #  define _GLIBCXX_USE_CONSTEXPR const
00103 # endif
00104 #endif
00105 
00106 // Macro for noexcept, to support in mixed 03/0x mode.
00107 #ifndef _GLIBCXX_NOEXCEPT
00108 # if __cplusplus >= 201103L
00109 #  define _GLIBCXX_NOEXCEPT noexcept
00110 #  define _GLIBCXX_USE_NOEXCEPT noexcept
00111 #  define _GLIBCXX_THROW(_EXC)
00112 # else
00113 #  define _GLIBCXX_NOEXCEPT
00114 #  define _GLIBCXX_USE_NOEXCEPT throw()
00115 #  define _GLIBCXX_THROW(_EXC) throw(_EXC)
00116 # endif
00117 #endif
00118 
00119 #ifndef _GLIBCXX_NOTHROW
00120 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
00121 #endif
00122 
00123 #ifndef _GLIBCXX_THROW_OR_ABORT
00124 # if __EXCEPTIONS
00125 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
00126 # else
00127 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
00128 # endif
00129 #endif
00130 
00131 // Macro for extern template, ie controling template linkage via use
00132 // of extern keyword on template declaration. As documented in the g++
00133 // manual, it inhibits all implicit instantiations and is used
00134 // throughout the library to avoid multiple weak definitions for
00135 // required types that are already explicitly instantiated in the
00136 // library binary. This substantially reduces the binary size of
00137 // resulting executables.
00138 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
00139 // templates only in basic_string, thus activating its debug-mode
00140 // checks even at -O0.
00141 # define _GLIBCXX_EXTERN_TEMPLATE 1
00142 
00143 /*
00144   Outline of libstdc++ namespaces.
00145 
00146   namespace std
00147   {
00148     namespace __debug { }
00149     namespace __parallel { }
00150     namespace __profile { }
00151     namespace __cxx1998 { }
00152 
00153     namespace __detail { }
00154 
00155     namespace rel_ops { }
00156 
00157     namespace tr1
00158     {
00159       namespace placeholders { }
00160       namespace regex_constants { }
00161       namespace __detail { }
00162     }
00163 
00164     namespace tr2 { }
00165     
00166     namespace decimal { }
00167 
00168     namespace chrono { }
00169     namespace placeholders { }
00170     namespace regex_constants { }
00171     namespace this_thread { }
00172   }
00173 
00174   namespace abi { }
00175 
00176   namespace __gnu_cxx
00177   {
00178     namespace __detail { }
00179   }
00180 
00181   For full details see:
00182   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
00183 */
00184 namespace std
00185 {
00186   typedef __SIZE_TYPE__     size_t;
00187   typedef __PTRDIFF_TYPE__  ptrdiff_t;
00188 
00189 #if __cplusplus >= 201103L
00190   typedef decltype(nullptr) nullptr_t;
00191 #endif
00192 }
00193 
00194 
00195 // Defined if inline namespaces are used for versioning.
00196 # define _GLIBCXX_INLINE_VERSION 0 
00197 
00198 // Inline namespace for symbol versioning.
00199 #if _GLIBCXX_INLINE_VERSION
00200 
00201 namespace std
00202 {
00203   inline namespace __7 { }
00204 
00205   namespace rel_ops { inline namespace __7 { } }
00206 
00207   namespace tr1
00208   {
00209     inline namespace __7 { }
00210     namespace placeholders { inline namespace __7 { } }
00211     namespace regex_constants { inline namespace __7 { } }
00212     namespace __detail { inline namespace __7 { } }
00213   }
00214 
00215   namespace tr2
00216   { inline namespace __7 { } }
00217 
00218   namespace decimal { inline namespace __7 { } }
00219 
00220   namespace chrono { inline namespace __7 { } }
00221   namespace placeholders { inline namespace __7 { } }
00222   namespace regex_constants { inline namespace __7 { } }
00223   namespace this_thread { inline namespace __7 { } }
00224 
00225   namespace __detail { inline namespace __7 { } }
00226 }
00227 
00228 namespace __gnu_cxx
00229 {
00230   inline namespace __7 { }
00231   namespace __detail { inline namespace __7 { } }
00232 }
00233 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 {
00234 # define _GLIBCXX_END_NAMESPACE_VERSION }
00235 #else
00236 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
00237 # define _GLIBCXX_END_NAMESPACE_VERSION
00238 #endif
00239 
00240 
00241 // Inline namespaces for special modes: debug, parallel, profile.
00242 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
00243     || defined(_GLIBCXX_PROFILE)
00244 namespace std
00245 {
00246   // Non-inline namespace for components replaced by alternates in active mode.
00247   namespace __cxx1998
00248   {
00249 #if _GLIBCXX_INLINE_VERSION
00250  inline namespace __7 { }
00251 #endif
00252   }
00253 
00254   // Inline namespace for debug mode.
00255 # ifdef _GLIBCXX_DEBUG
00256   inline namespace __debug { }
00257 # endif
00258 
00259   // Inline namespaces for parallel mode.
00260 # ifdef _GLIBCXX_PARALLEL
00261   inline namespace __parallel { }
00262 # endif
00263 
00264   // Inline namespaces for profile mode
00265 # ifdef _GLIBCXX_PROFILE
00266   inline namespace __profile { }
00267 # endif
00268 }
00269 
00270 // Check for invalid usage and unsupported mixed-mode use.
00271 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
00272 #  error illegal use of multiple inlined namespaces
00273 # endif
00274 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
00275 #  error illegal use of multiple inlined namespaces
00276 # endif
00277 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
00278 #  error illegal use of multiple inlined namespaces
00279 # endif
00280 
00281 // Check for invalid use due to lack for weak symbols.
00282 # if __NO_INLINE__ && !__GXX_WEAK__
00283 #  warning currently using inlined namespace mode which may fail \
00284    without inlining due to lack of weak symbols
00285 # endif
00286 #endif
00287 
00288 // Macros for namespace scope. Either namespace std:: or the name
00289 // of some nested namespace within it corresponding to the active mode.
00290 // _GLIBCXX_STD_A
00291 // _GLIBCXX_STD_C
00292 //
00293 // Macros for opening/closing conditional namespaces.
00294 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
00295 // _GLIBCXX_END_NAMESPACE_ALGO
00296 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00297 // _GLIBCXX_END_NAMESPACE_CONTAINER
00298 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
00299 # define _GLIBCXX_STD_C __cxx1998
00300 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
00301      namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION
00302 # define _GLIBCXX_END_NAMESPACE_CONTAINER \
00303      _GLIBCXX_END_NAMESPACE_VERSION }
00304 # undef _GLIBCXX_EXTERN_TEMPLATE
00305 # define _GLIBCXX_EXTERN_TEMPLATE -1
00306 #endif
00307 
00308 #ifdef _GLIBCXX_PARALLEL
00309 # define _GLIBCXX_STD_A __cxx1998
00310 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
00311      namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION
00312 # define _GLIBCXX_END_NAMESPACE_ALGO \
00313      _GLIBCXX_END_NAMESPACE_VERSION }
00314 #endif
00315 
00316 #ifndef _GLIBCXX_STD_A
00317 # define _GLIBCXX_STD_A std
00318 #endif
00319 
00320 #ifndef _GLIBCXX_STD_C
00321 # define _GLIBCXX_STD_C std
00322 #endif
00323 
00324 #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO
00325 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
00326 #endif
00327 
00328 #ifndef _GLIBCXX_END_NAMESPACE_ALGO
00329 # define _GLIBCXX_END_NAMESPACE_ALGO
00330 #endif
00331 
00332 #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00333 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
00334 #endif
00335 
00336 #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER
00337 # define _GLIBCXX_END_NAMESPACE_CONTAINER
00338 #endif
00339 
00340 // GLIBCXX_ABI Deprecated
00341 // Define if compatibility should be provided for -mlong-double-64.
00342 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
00343 
00344 // Inline namespace for long double 128 mode.
00345 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
00346 namespace std
00347 {
00348   inline namespace __gnu_cxx_ldbl128 { }
00349 }
00350 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
00351 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
00352 # define _GLIBCXX_END_NAMESPACE_LDBL }
00353 #else
00354 # define _GLIBCXX_NAMESPACE_LDBL
00355 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
00356 # define _GLIBCXX_END_NAMESPACE_LDBL
00357 #endif
00358 
00359 // Assert.
00360 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
00361 # define __glibcxx_assert(_Condition)
00362 #else
00363 namespace std
00364 {
00365   // Avoid the use of assert, because we're trying to keep the <cassert>
00366   // include out of the mix.
00367   inline void
00368   __replacement_assert(const char* __file, int __line,
00369                const char* __function, const char* __condition)
00370   {
00371     __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
00372              __function, __condition);
00373     __builtin_abort();
00374   }
00375 }
00376 #define __glibcxx_assert(_Condition)                     \
00377   do                                     \
00378   {                                      \
00379     if (! (_Condition))                                                  \
00380       std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
00381                 #_Condition);                \
00382   } while (false)
00383 #endif
00384 
00385 // Macros for race detectors.
00386 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
00387 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
00388 // atomic (lock-free) synchronization to race detectors:
00389 // the race detector will infer a happens-before arc from the former to the
00390 // latter when they share the same argument pointer.
00391 //
00392 // The most frequent use case for these macros (and the only case in the
00393 // current implementation of the library) is atomic reference counting:
00394 //   void _M_remove_reference()
00395 //   {
00396 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
00397 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
00398 //       {
00399 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
00400 //         _M_destroy(__a);
00401 //       }
00402 //   }
00403 // The annotations in this example tell the race detector that all memory
00404 // accesses occurred when the refcount was positive do not race with
00405 // memory accesses which occurred after the refcount became zero.
00406 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
00407 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
00408 #endif
00409 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
00410 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
00411 #endif
00412 
00413 // Macros for C linkage: define extern "C" linkage only when using C++.
00414 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
00415 # define _GLIBCXX_END_EXTERN_C }
00416 
00417 #else // !__cplusplus
00418 # define _GLIBCXX_BEGIN_EXTERN_C
00419 # define _GLIBCXX_END_EXTERN_C
00420 #endif
00421 
00422 
00423 // First includes.
00424 
00425 // Pick up any OS-specific definitions.
00426 #include <bits/os_defines.h>
00427 
00428 // Pick up any CPU-specific definitions.
00429 #include <bits/cpu_defines.h>
00430 
00431 // If platform uses neither visibility nor psuedo-visibility,
00432 // specify empty default for namespace annotation macros.
00433 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
00434 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
00435 #endif
00436 
00437 // Certain function definitions that are meant to be overridable from
00438 // user code are decorated with this macro.  For some targets, this
00439 // macro causes these definitions to be weak.
00440 #ifndef _GLIBCXX_WEAK_DEFINITION
00441 # define _GLIBCXX_WEAK_DEFINITION
00442 #endif
00443 
00444 
00445 // The remainder of the prewritten config is automatic; all the
00446 // user hooks are listed above.
00447 
00448 // Create a boolean flag to be used to determine if --fast-math is set.
00449 #ifdef __FAST_MATH__
00450 # define _GLIBCXX_FAST_MATH 1
00451 #else
00452 # define _GLIBCXX_FAST_MATH 0
00453 #endif
00454 
00455 // This marks string literals in header files to be extracted for eventual
00456 // translation.  It is primarily used for messages in thrown exceptions; see
00457 // src/functexcept.cc.  We use __N because the more traditional _N is used
00458 // for something else under certain OSes (see BADNAMES).
00459 #define __N(msgid)     (msgid)
00460 
00461 // For example, <windows.h> is known to #define min and max as macros...
00462 #undef min
00463 #undef max
00464 
00465 // End of prewritten config; the settings discovered at configure time follow.
00466 /* config.h.  Generated from config.h.in by configure.  */
00467 /* config.h.in.  Generated from configure.ac by autoheader.  */
00468 
00469 /* Define to 1 if you have the `acosf' function. */
00470 #define _GLIBCXX_HAVE_ACOSF 1
00471 
00472 /* Define to 1 if you have the `acosl' function. */
00473 #define _GLIBCXX_HAVE_ACOSL 1
00474 
00475 /* Define to 1 if you have the `asinf' function. */
00476 #define _GLIBCXX_HAVE_ASINF 1
00477 
00478 /* Define to 1 if you have the `asinl' function. */
00479 #define _GLIBCXX_HAVE_ASINL 1
00480 
00481 /* Define to 1 if the target assembler supports .symver directive. */
00482 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
00483 
00484 /* Define to 1 if you have the `atan2f' function. */
00485 #define _GLIBCXX_HAVE_ATAN2F 1
00486 
00487 /* Define to 1 if you have the `atan2l' function. */
00488 #define _GLIBCXX_HAVE_ATAN2L 1
00489 
00490 /* Define to 1 if you have the `atanf' function. */
00491 #define _GLIBCXX_HAVE_ATANF 1
00492 
00493 /* Define to 1 if you have the `atanl' function. */
00494 #define _GLIBCXX_HAVE_ATANL 1
00495 
00496 /* Define to 1 if you have the `at_quick_exit' function. */
00497 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
00498 
00499 /* Define to 1 if the target assembler supports thread-local storage. */
00500 /* #undef _GLIBCXX_HAVE_CC_TLS */
00501 
00502 /* Define to 1 if you have the `ceilf' function. */
00503 #define _GLIBCXX_HAVE_CEILF 1
00504 
00505 /* Define to 1 if you have the `ceill' function. */
00506 #define _GLIBCXX_HAVE_CEILL 1
00507 
00508 /* Define to 1 if you have the <complex.h> header file. */
00509 #define _GLIBCXX_HAVE_COMPLEX_H 1
00510 
00511 /* Define to 1 if you have the `cosf' function. */
00512 #define _GLIBCXX_HAVE_COSF 1
00513 
00514 /* Define to 1 if you have the `coshf' function. */
00515 #define _GLIBCXX_HAVE_COSHF 1
00516 
00517 /* Define to 1 if you have the `coshl' function. */
00518 #define _GLIBCXX_HAVE_COSHL 1
00519 
00520 /* Define to 1 if you have the `cosl' function. */
00521 #define _GLIBCXX_HAVE_COSL 1
00522 
00523 /* Define to 1 if you have the <dlfcn.h> header file. */
00524 #define _GLIBCXX_HAVE_DLFCN_H 1
00525 
00526 /* Define if EBADMSG exists. */
00527 #define _GLIBCXX_HAVE_EBADMSG 1
00528 
00529 /* Define if ECANCELED exists. */
00530 #define _GLIBCXX_HAVE_ECANCELED 1
00531 
00532 /* Define if ECHILD exists. */
00533 #define _GLIBCXX_HAVE_ECHILD 1
00534 
00535 /* Define if EIDRM exists. */
00536 #define _GLIBCXX_HAVE_EIDRM 1
00537 
00538 /* Define to 1 if you have the <endian.h> header file. */
00539 #define _GLIBCXX_HAVE_ENDIAN_H 1
00540 
00541 /* Define if ENODATA exists. */
00542 #define _GLIBCXX_HAVE_ENODATA 1
00543 
00544 /* Define if ENOLINK exists. */
00545 #define _GLIBCXX_HAVE_ENOLINK 1
00546 
00547 /* Define if ENOSPC exists. */
00548 #define _GLIBCXX_HAVE_ENOSPC 1
00549 
00550 /* Define if ENOSR exists. */
00551 #define _GLIBCXX_HAVE_ENOSR 1
00552 
00553 /* Define if ENOSTR exists. */
00554 #define _GLIBCXX_HAVE_ENOSTR 1
00555 
00556 /* Define if ENOTRECOVERABLE exists. */
00557 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
00558 
00559 /* Define if ENOTSUP exists. */
00560 #define _GLIBCXX_HAVE_ENOTSUP 1
00561 
00562 /* Define if EOVERFLOW exists. */
00563 #define _GLIBCXX_HAVE_EOVERFLOW 1
00564 
00565 /* Define if EOWNERDEAD exists. */
00566 #define _GLIBCXX_HAVE_EOWNERDEAD 1
00567 
00568 /* Define if EPERM exists. */
00569 #define _GLIBCXX_HAVE_EPERM 1
00570 
00571 /* Define if EPROTO exists. */
00572 #define _GLIBCXX_HAVE_EPROTO 1
00573 
00574 /* Define if ETIME exists. */
00575 #define _GLIBCXX_HAVE_ETIME 1
00576 
00577 /* Define if ETIMEDOUT exists. */
00578 #define _GLIBCXX_HAVE_ETIMEDOUT 1
00579 
00580 /* Define if ETXTBSY exists. */
00581 #define _GLIBCXX_HAVE_ETXTBSY 1
00582 
00583 /* Define if EWOULDBLOCK exists. */
00584 #define _GLIBCXX_HAVE_EWOULDBLOCK 1
00585 
00586 /* Define to 1 if you have the <execinfo.h> header file. */
00587 #define _GLIBCXX_HAVE_EXECINFO_H 1
00588 
00589 /* Define to 1 if you have the `expf' function. */
00590 #define _GLIBCXX_HAVE_EXPF 1
00591 
00592 /* Define to 1 if you have the `expl' function. */
00593 #define _GLIBCXX_HAVE_EXPL 1
00594 
00595 /* Define to 1 if you have the `fabsf' function. */
00596 #define _GLIBCXX_HAVE_FABSF 1
00597 
00598 /* Define to 1 if you have the `fabsl' function. */
00599 #define _GLIBCXX_HAVE_FABSL 1
00600 
00601 /* Define to 1 if you have the <fenv.h> header file. */
00602 #define _GLIBCXX_HAVE_FENV_H 1
00603 
00604 /* Define to 1 if you have the `finite' function. */
00605 #define _GLIBCXX_HAVE_FINITE 1
00606 
00607 /* Define to 1 if you have the `finitef' function. */
00608 #define _GLIBCXX_HAVE_FINITEF 1
00609 
00610 /* Define to 1 if you have the `finitel' function. */
00611 #define _GLIBCXX_HAVE_FINITEL 1
00612 
00613 /* Define to 1 if you have the <float.h> header file. */
00614 #define _GLIBCXX_HAVE_FLOAT_H 1
00615 
00616 /* Define to 1 if you have the `floorf' function. */
00617 #define _GLIBCXX_HAVE_FLOORF 1
00618 
00619 /* Define to 1 if you have the `floorl' function. */
00620 #define _GLIBCXX_HAVE_FLOORL 1
00621 
00622 /* Define to 1 if you have the `fmodf' function. */
00623 #define _GLIBCXX_HAVE_FMODF 1
00624 
00625 /* Define to 1 if you have the `fmodl' function. */
00626 #define _GLIBCXX_HAVE_FMODL 1
00627 
00628 /* Define to 1 if you have the `fpclass' function. */
00629 /* #undef _GLIBCXX_HAVE_FPCLASS */
00630 
00631 /* Define to 1 if you have the <fp.h> header file. */
00632 /* #undef _GLIBCXX_HAVE_FP_H */
00633 
00634 /* Define to 1 if you have the `frexpf' function. */
00635 #define _GLIBCXX_HAVE_FREXPF 1
00636 
00637 /* Define to 1 if you have the `frexpl' function. */
00638 #define _GLIBCXX_HAVE_FREXPL 1
00639 
00640 /* Define if _Unwind_GetIPInfo is available. */
00641 #define _GLIBCXX_HAVE_GETIPINFO 1
00642 
00643 /* Define if gets is available in <stdio.h>. */
00644 #define _GLIBCXX_HAVE_GETS 1
00645 
00646 /* Define to 1 if you have the `hypot' function. */
00647 #define _GLIBCXX_HAVE_HYPOT 1
00648 
00649 /* Define to 1 if you have the `hypotf' function. */
00650 #define _GLIBCXX_HAVE_HYPOTF 1
00651 
00652 /* Define to 1 if you have the `hypotl' function. */
00653 #define _GLIBCXX_HAVE_HYPOTL 1
00654 
00655 /* Define if you have the iconv() function. */
00656 #define _GLIBCXX_HAVE_ICONV 1
00657 
00658 /* Define to 1 if you have the <ieeefp.h> header file. */
00659 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
00660 
00661 /* Define if int64_t is available in <stdint.h>. */
00662 #define _GLIBCXX_HAVE_INT64_T 1
00663 
00664 /* Define if int64_t is a long. */
00665 #define _GLIBCXX_HAVE_INT64_T_LONG 1
00666 
00667 /* Define if int64_t is a long long. */
00668 /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */
00669 
00670 /* Define to 1 if you have the <inttypes.h> header file. */
00671 #define _GLIBCXX_HAVE_INTTYPES_H 1
00672 
00673 /* Define to 1 if you have the `isinf' function. */
00674 #define _GLIBCXX_HAVE_ISINF 1
00675 
00676 /* Define to 1 if you have the `isinff' function. */
00677 #define _GLIBCXX_HAVE_ISINFF 1
00678 
00679 /* Define to 1 if you have the `isinfl' function. */
00680 #define _GLIBCXX_HAVE_ISINFL 1
00681 
00682 /* Define to 1 if you have the `isnan' function. */
00683 #define _GLIBCXX_HAVE_ISNAN 1
00684 
00685 /* Define to 1 if you have the `isnanf' function. */
00686 #define _GLIBCXX_HAVE_ISNANF 1
00687 
00688 /* Define to 1 if you have the `isnanl' function. */
00689 #define _GLIBCXX_HAVE_ISNANL 1
00690 
00691 /* Defined if iswblank exists. */
00692 #define _GLIBCXX_HAVE_ISWBLANK 1
00693 
00694 /* Define if LC_MESSAGES is available in <locale.h>. */
00695 #define _GLIBCXX_HAVE_LC_MESSAGES 1
00696 
00697 /* Define to 1 if you have the `ldexpf' function. */
00698 #define _GLIBCXX_HAVE_LDEXPF 1
00699 
00700 /* Define to 1 if you have the `ldexpl' function. */
00701 #define _GLIBCXX_HAVE_LDEXPL 1
00702 
00703 /* Define to 1 if you have the <libintl.h> header file. */
00704 #define _GLIBCXX_HAVE_LIBINTL_H 1
00705 
00706 /* Only used in build directory testsuite_hooks.h. */
00707 #define _GLIBCXX_HAVE_LIMIT_AS 1
00708 
00709 /* Only used in build directory testsuite_hooks.h. */
00710 #define _GLIBCXX_HAVE_LIMIT_DATA 1
00711 
00712 /* Only used in build directory testsuite_hooks.h. */
00713 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
00714 
00715 /* Only used in build directory testsuite_hooks.h. */
00716 #define _GLIBCXX_HAVE_LIMIT_RSS 1
00717 
00718 /* Only used in build directory testsuite_hooks.h. */
00719 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
00720 
00721 /* Define if futex syscall is available. */
00722 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
00723 
00724 /* Define to 1 if you have the <locale.h> header file. */
00725 #define _GLIBCXX_HAVE_LOCALE_H 1
00726 
00727 /* Define to 1 if you have the `log10f' function. */
00728 #define _GLIBCXX_HAVE_LOG10F 1
00729 
00730 /* Define to 1 if you have the `log10l' function. */
00731 #define _GLIBCXX_HAVE_LOG10L 1
00732 
00733 /* Define to 1 if you have the `logf' function. */
00734 #define _GLIBCXX_HAVE_LOGF 1
00735 
00736 /* Define to 1 if you have the `logl' function. */
00737 #define _GLIBCXX_HAVE_LOGL 1
00738 
00739 /* Define to 1 if you have the <machine/endian.h> header file. */
00740 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
00741 
00742 /* Define to 1 if you have the <machine/param.h> header file. */
00743 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
00744 
00745 /* Define if mbstate_t exists in wchar.h. */
00746 #define _GLIBCXX_HAVE_MBSTATE_T 1
00747 
00748 /* Define to 1 if you have the <memory.h> header file. */
00749 #define _GLIBCXX_HAVE_MEMORY_H 1
00750 
00751 /* Define to 1 if you have the `modf' function. */
00752 #define _GLIBCXX_HAVE_MODF 1
00753 
00754 /* Define to 1 if you have the `modff' function. */
00755 #define _GLIBCXX_HAVE_MODFF 1
00756 
00757 /* Define to 1 if you have the `modfl' function. */
00758 #define _GLIBCXX_HAVE_MODFL 1
00759 
00760 /* Define to 1 if you have the <nan.h> header file. */
00761 /* #undef _GLIBCXX_HAVE_NAN_H */
00762 
00763 /* Define if poll is available in <poll.h>. */
00764 #define _GLIBCXX_HAVE_POLL 1
00765 
00766 /* Define to 1 if you have the `powf' function. */
00767 #define _GLIBCXX_HAVE_POWF 1
00768 
00769 /* Define to 1 if you have the `powl' function. */
00770 #define _GLIBCXX_HAVE_POWL 1
00771 
00772 /* Define to 1 if you have the `qfpclass' function. */
00773 /* #undef _GLIBCXX_HAVE_QFPCLASS */
00774 
00775 /* Define to 1 if you have the `quick_exit' function. */
00776 #define _GLIBCXX_HAVE_QUICK_EXIT 1
00777 
00778 /* Define to 1 if you have the `setenv' function. */
00779 #define _GLIBCXX_HAVE_SETENV 1
00780 
00781 /* Define to 1 if you have the `sincos' function. */
00782 #define _GLIBCXX_HAVE_SINCOS 1
00783 
00784 /* Define to 1 if you have the `sincosf' function. */
00785 #define _GLIBCXX_HAVE_SINCOSF 1
00786 
00787 /* Define to 1 if you have the `sincosl' function. */
00788 #define _GLIBCXX_HAVE_SINCOSL 1
00789 
00790 /* Define to 1 if you have the `sinf' function. */
00791 #define _GLIBCXX_HAVE_SINF 1
00792 
00793 /* Define to 1 if you have the `sinhf' function. */
00794 #define _GLIBCXX_HAVE_SINHF 1
00795 
00796 /* Define to 1 if you have the `sinhl' function. */
00797 #define _GLIBCXX_HAVE_SINHL 1
00798 
00799 /* Define to 1 if you have the `sinl' function. */
00800 #define _GLIBCXX_HAVE_SINL 1
00801 
00802 /* Defined if sleep exists. */
00803 #define _GLIBCXX_HAVE_SLEEP 1
00804 
00805 /* Define to 1 if you have the `sqrtf' function. */
00806 #define _GLIBCXX_HAVE_SQRTF 1
00807 
00808 /* Define to 1 if you have the `sqrtl' function. */
00809 #define _GLIBCXX_HAVE_SQRTL 1
00810 
00811 /* Define to 1 if you have the <stdalign.h> header file. */
00812 #define _GLIBCXX_HAVE_STDALIGN_H 1
00813 
00814 /* Define to 1 if you have the <stdbool.h> header file. */
00815 #define _GLIBCXX_HAVE_STDBOOL_H 1
00816 
00817 /* Define to 1 if you have the <stdint.h> header file. */
00818 #define _GLIBCXX_HAVE_STDINT_H 1
00819 
00820 /* Define to 1 if you have the <stdlib.h> header file. */
00821 #define _GLIBCXX_HAVE_STDLIB_H 1
00822 
00823 /* Define if strerror_l is available in <string.h>. */
00824 #define _GLIBCXX_HAVE_STRERROR_L 1
00825 
00826 /* Define if strerror_r is available in <string.h>. */
00827 #define _GLIBCXX_HAVE_STRERROR_R 1
00828 
00829 /* Define to 1 if you have the <strings.h> header file. */
00830 #define _GLIBCXX_HAVE_STRINGS_H 1
00831 
00832 /* Define to 1 if you have the <string.h> header file. */
00833 #define _GLIBCXX_HAVE_STRING_H 1
00834 
00835 /* Define to 1 if you have the `strtof' function. */
00836 #define _GLIBCXX_HAVE_STRTOF 1
00837 
00838 /* Define to 1 if you have the `strtold' function. */
00839 #define _GLIBCXX_HAVE_STRTOLD 1
00840 
00841 /* Define if strxfrm_l is available in <string.h>. */
00842 #define _GLIBCXX_HAVE_STRXFRM_L 1
00843 
00844 /* Define to 1 if the target runtime linker supports binding the same symbol
00845    to different versions. */
00846 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
00847 
00848 /* Define to 1 if you have the <sys/filio.h> header file. */
00849 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
00850 
00851 /* Define to 1 if you have the <sys/ioctl.h> header file. */
00852 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
00853 
00854 /* Define to 1 if you have the <sys/ipc.h> header file. */
00855 #define _GLIBCXX_HAVE_SYS_IPC_H 1
00856 
00857 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
00858 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
00859 
00860 /* Define to 1 if you have the <sys/machine.h> header file. */
00861 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
00862 
00863 /* Define to 1 if you have the <sys/param.h> header file. */
00864 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
00865 
00866 /* Define to 1 if you have the <sys/resource.h> header file. */
00867 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
00868 
00869 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
00870 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
00871 
00872 /* Define to 1 if you have the <sys/sem.h> header file. */
00873 #define _GLIBCXX_HAVE_SYS_SEM_H 1
00874 
00875 /* Define to 1 if you have the <sys/stat.h> header file. */
00876 #define _GLIBCXX_HAVE_SYS_STAT_H 1
00877 
00878 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
00879 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
00880 
00881 /* Define to 1 if you have the <sys/time.h> header file. */
00882 #define _GLIBCXX_HAVE_SYS_TIME_H 1
00883 
00884 /* Define to 1 if you have the <sys/types.h> header file. */
00885 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
00886 
00887 /* Define to 1 if you have the <sys/uio.h> header file. */
00888 #define _GLIBCXX_HAVE_SYS_UIO_H 1
00889 
00890 /* Define if S_IFREG is available in <sys/stat.h>. */
00891 /* #undef _GLIBCXX_HAVE_S_IFREG */
00892 
00893 /* Define if S_IFREG is available in <sys/stat.h>. */
00894 #define _GLIBCXX_HAVE_S_ISREG 1
00895 
00896 /* Define to 1 if you have the `tanf' function. */
00897 #define _GLIBCXX_HAVE_TANF 1
00898 
00899 /* Define to 1 if you have the `tanhf' function. */
00900 #define _GLIBCXX_HAVE_TANHF 1
00901 
00902 /* Define to 1 if you have the `tanhl' function. */
00903 #define _GLIBCXX_HAVE_TANHL 1
00904 
00905 /* Define to 1 if you have the `tanl' function. */
00906 #define _GLIBCXX_HAVE_TANL 1
00907 
00908 /* Define to 1 if you have the <tgmath.h> header file. */
00909 #define _GLIBCXX_HAVE_TGMATH_H 1
00910 
00911 /* Define to 1 if the target supports thread-local storage. */
00912 #define _GLIBCXX_HAVE_TLS 1
00913 
00914 /* Define to 1 if you have the <unistd.h> header file. */
00915 #define _GLIBCXX_HAVE_UNISTD_H 1
00916 
00917 /* Defined if usleep exists. */
00918 #define _GLIBCXX_HAVE_USLEEP 1
00919 
00920 /* Defined if vfwscanf exists. */
00921 #define _GLIBCXX_HAVE_VFWSCANF 1
00922 
00923 /* Defined if vswscanf exists. */
00924 #define _GLIBCXX_HAVE_VSWSCANF 1
00925 
00926 /* Defined if vwscanf exists. */
00927 #define _GLIBCXX_HAVE_VWSCANF 1
00928 
00929 /* Define to 1 if you have the <wchar.h> header file. */
00930 #define _GLIBCXX_HAVE_WCHAR_H 1
00931 
00932 /* Defined if wcstof exists. */
00933 #define _GLIBCXX_HAVE_WCSTOF 1
00934 
00935 /* Define to 1 if you have the <wctype.h> header file. */
00936 #define _GLIBCXX_HAVE_WCTYPE_H 1
00937 
00938 /* Defined if Sleep exists. */
00939 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
00940 
00941 /* Define if writev is available in <sys/uio.h>. */
00942 #define _GLIBCXX_HAVE_WRITEV 1
00943 
00944 /* Define to 1 if you have the `_acosf' function. */
00945 /* #undef _GLIBCXX_HAVE__ACOSF */
00946 
00947 /* Define to 1 if you have the `_acosl' function. */
00948 /* #undef _GLIBCXX_HAVE__ACOSL */
00949 
00950 /* Define to 1 if you have the `_asinf' function. */
00951 /* #undef _GLIBCXX_HAVE__ASINF */
00952 
00953 /* Define to 1 if you have the `_asinl' function. */
00954 /* #undef _GLIBCXX_HAVE__ASINL */
00955 
00956 /* Define to 1 if you have the `_atan2f' function. */
00957 /* #undef _GLIBCXX_HAVE__ATAN2F */
00958 
00959 /* Define to 1 if you have the `_atan2l' function. */
00960 /* #undef _GLIBCXX_HAVE__ATAN2L */
00961 
00962 /* Define to 1 if you have the `_atanf' function. */
00963 /* #undef _GLIBCXX_HAVE__ATANF */
00964 
00965 /* Define to 1 if you have the `_atanl' function. */
00966 /* #undef _GLIBCXX_HAVE__ATANL */
00967 
00968 /* Define to 1 if you have the `_ceilf' function. */
00969 /* #undef _GLIBCXX_HAVE__CEILF */
00970 
00971 /* Define to 1 if you have the `_ceill' function. */
00972 /* #undef _GLIBCXX_HAVE__CEILL */
00973 
00974 /* Define to 1 if you have the `_cosf' function. */
00975 /* #undef _GLIBCXX_HAVE__COSF */
00976 
00977 /* Define to 1 if you have the `_coshf' function. */
00978 /* #undef _GLIBCXX_HAVE__COSHF */
00979 
00980 /* Define to 1 if you have the `_coshl' function. */
00981 /* #undef _GLIBCXX_HAVE__COSHL */
00982 
00983 /* Define to 1 if you have the `_cosl' function. */
00984 /* #undef _GLIBCXX_HAVE__COSL */
00985 
00986 /* Define to 1 if you have the `_expf' function. */
00987 /* #undef _GLIBCXX_HAVE__EXPF */
00988 
00989 /* Define to 1 if you have the `_expl' function. */
00990 /* #undef _GLIBCXX_HAVE__EXPL */
00991 
00992 /* Define to 1 if you have the `_fabsf' function. */
00993 /* #undef _GLIBCXX_HAVE__FABSF */
00994 
00995 /* Define to 1 if you have the `_fabsl' function. */
00996 /* #undef _GLIBCXX_HAVE__FABSL */
00997 
00998 /* Define to 1 if you have the `_finite' function. */
00999 /* #undef _GLIBCXX_HAVE__FINITE */
01000 
01001 /* Define to 1 if you have the `_finitef' function. */
01002 /* #undef _GLIBCXX_HAVE__FINITEF */
01003 
01004 /* Define to 1 if you have the `_finitel' function. */
01005 /* #undef _GLIBCXX_HAVE__FINITEL */
01006 
01007 /* Define to 1 if you have the `_floorf' function. */
01008 /* #undef _GLIBCXX_HAVE__FLOORF */
01009 
01010 /* Define to 1 if you have the `_floorl' function. */
01011 /* #undef _GLIBCXX_HAVE__FLOORL */
01012 
01013 /* Define to 1 if you have the `_fmodf' function. */
01014 /* #undef _GLIBCXX_HAVE__FMODF */
01015 
01016 /* Define to 1 if you have the `_fmodl' function. */
01017 /* #undef _GLIBCXX_HAVE__FMODL */
01018 
01019 /* Define to 1 if you have the `_fpclass' function. */
01020 /* #undef _GLIBCXX_HAVE__FPCLASS */
01021 
01022 /* Define to 1 if you have the `_frexpf' function. */
01023 /* #undef _GLIBCXX_HAVE__FREXPF */
01024 
01025 /* Define to 1 if you have the `_frexpl' function. */
01026 /* #undef _GLIBCXX_HAVE__FREXPL */
01027 
01028 /* Define to 1 if you have the `_hypot' function. */
01029 /* #undef _GLIBCXX_HAVE__HYPOT */
01030 
01031 /* Define to 1 if you have the `_hypotf' function. */
01032 /* #undef _GLIBCXX_HAVE__HYPOTF */
01033 
01034 /* Define to 1 if you have the `_hypotl' function. */
01035 /* #undef _GLIBCXX_HAVE__HYPOTL */
01036 
01037 /* Define to 1 if you have the `_isinf' function. */
01038 /* #undef _GLIBCXX_HAVE__ISINF */
01039 
01040 /* Define to 1 if you have the `_isinff' function. */
01041 /* #undef _GLIBCXX_HAVE__ISINFF */
01042 
01043 /* Define to 1 if you have the `_isinfl' function. */
01044 /* #undef _GLIBCXX_HAVE__ISINFL */
01045 
01046 /* Define to 1 if you have the `_isnan' function. */
01047 /* #undef _GLIBCXX_HAVE__ISNAN */
01048 
01049 /* Define to 1 if you have the `_isnanf' function. */
01050 /* #undef _GLIBCXX_HAVE__ISNANF */
01051 
01052 /* Define to 1 if you have the `_isnanl' function. */
01053 /* #undef _GLIBCXX_HAVE__ISNANL */
01054 
01055 /* Define to 1 if you have the `_ldexpf' function. */
01056 /* #undef _GLIBCXX_HAVE__LDEXPF */
01057 
01058 /* Define to 1 if you have the `_ldexpl' function. */
01059 /* #undef _GLIBCXX_HAVE__LDEXPL */
01060 
01061 /* Define to 1 if you have the `_log10f' function. */
01062 /* #undef _GLIBCXX_HAVE__LOG10F */
01063 
01064 /* Define to 1 if you have the `_log10l' function. */
01065 /* #undef _GLIBCXX_HAVE__LOG10L */
01066 
01067 /* Define to 1 if you have the `_logf' function. */
01068 /* #undef _GLIBCXX_HAVE__LOGF */
01069 
01070 /* Define to 1 if you have the `_logl' function. */
01071 /* #undef _GLIBCXX_HAVE__LOGL */
01072 
01073 /* Define to 1 if you have the `_modf' function. */
01074 /* #undef _GLIBCXX_HAVE__MODF */
01075 
01076 /* Define to 1 if you have the `_modff' function. */
01077 /* #undef _GLIBCXX_HAVE__MODFF */
01078 
01079 /* Define to 1 if you have the `_modfl' function. */
01080 /* #undef _GLIBCXX_HAVE__MODFL */
01081 
01082 /* Define to 1 if you have the `_powf' function. */
01083 /* #undef _GLIBCXX_HAVE__POWF */
01084 
01085 /* Define to 1 if you have the `_powl' function. */
01086 /* #undef _GLIBCXX_HAVE__POWL */
01087 
01088 /* Define to 1 if you have the `_qfpclass' function. */
01089 /* #undef _GLIBCXX_HAVE__QFPCLASS */
01090 
01091 /* Define to 1 if you have the `_sincos' function. */
01092 /* #undef _GLIBCXX_HAVE__SINCOS */
01093 
01094 /* Define to 1 if you have the `_sincosf' function. */
01095 /* #undef _GLIBCXX_HAVE__SINCOSF */
01096 
01097 /* Define to 1 if you have the `_sincosl' function. */
01098 /* #undef _GLIBCXX_HAVE__SINCOSL */
01099 
01100 /* Define to 1 if you have the `_sinf' function. */
01101 /* #undef _GLIBCXX_HAVE__SINF */
01102 
01103 /* Define to 1 if you have the `_sinhf' function. */
01104 /* #undef _GLIBCXX_HAVE__SINHF */
01105 
01106 /* Define to 1 if you have the `_sinhl' function. */
01107 /* #undef _GLIBCXX_HAVE__SINHL */
01108 
01109 /* Define to 1 if you have the `_sinl' function. */
01110 /* #undef _GLIBCXX_HAVE__SINL */
01111 
01112 /* Define to 1 if you have the `_sqrtf' function. */
01113 /* #undef _GLIBCXX_HAVE__SQRTF */
01114 
01115 /* Define to 1 if you have the `_sqrtl' function. */
01116 /* #undef _GLIBCXX_HAVE__SQRTL */
01117 
01118 /* Define to 1 if you have the `_tanf' function. */
01119 /* #undef _GLIBCXX_HAVE__TANF */
01120 
01121 /* Define to 1 if you have the `_tanhf' function. */
01122 /* #undef _GLIBCXX_HAVE__TANHF */
01123 
01124 /* Define to 1 if you have the `_tanhl' function. */
01125 /* #undef _GLIBCXX_HAVE__TANHL */
01126 
01127 /* Define to 1 if you have the `_tanl' function. */
01128 /* #undef _GLIBCXX_HAVE__TANL */
01129 
01130 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
01131 /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL */
01132 
01133 /* Define as const if the declaration of iconv() needs const. */
01134 #define _GLIBCXX_ICONV_CONST 
01135 
01136 /* Define to the sub-directory in which libtool stores uninstalled libraries.
01137    */
01138 #define LT_OBJDIR ".libs/"
01139 
01140 /* Name of package */
01141 /* #undef _GLIBCXX_PACKAGE */
01142 
01143 /* Define to the address where bug reports for this package should be sent. */
01144 #define _GLIBCXX_PACKAGE_BUGREPORT ""
01145 
01146 /* Define to the full name of this package. */
01147 #define _GLIBCXX_PACKAGE_NAME "package-unused"
01148 
01149 /* Define to the full name and version of this package. */
01150 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
01151 
01152 /* Define to the one symbol short name of this package. */
01153 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
01154 
01155 /* Define to the home page for this package. */
01156 #define _GLIBCXX_PACKAGE_URL ""
01157 
01158 /* Define to the version of this package. */
01159 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
01160 
01161 /* The size of `char', as computed by sizeof. */
01162 /* #undef SIZEOF_CHAR */
01163 
01164 /* The size of `int', as computed by sizeof. */
01165 /* #undef SIZEOF_INT */
01166 
01167 /* The size of `long', as computed by sizeof. */
01168 /* #undef SIZEOF_LONG */
01169 
01170 /* The size of `short', as computed by sizeof. */
01171 /* #undef SIZEOF_SHORT */
01172 
01173 /* The size of `void *', as computed by sizeof. */
01174 /* #undef SIZEOF_VOID_P */
01175 
01176 /* Define to 1 if you have the ANSI C header files. */
01177 #define STDC_HEADERS 1
01178 
01179 /* Version number of package */
01180 /* #undef _GLIBCXX_VERSION */
01181 
01182 /* Define if the compiler supports C++11 atomics. */
01183 #define _GLIBCXX_ATOMIC_BUILTINS 1
01184 
01185 /* Define to use concept checking code from the boost libraries. */
01186 /* #undef _GLIBCXX_CONCEPT_CHECKS */
01187 
01188 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
01189    undefined for platform defaults */
01190 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
01191 
01192 /* Define if gthreads library is available. */
01193 #define _GLIBCXX_HAS_GTHREADS 1
01194 
01195 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
01196 #define _GLIBCXX_HOSTED 1
01197 
01198 /* Define if compatibility should be provided for -mlong-double-64. */
01199 
01200 /* Define if ptrdiff_t is int. */
01201 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
01202 
01203 /* Define if using setrlimit to set resource limits during "make check" */
01204 #define _GLIBCXX_RES_LIMITS 1
01205 
01206 /* Define if size_t is unsigned int. */
01207 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
01208 
01209 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
01210 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
01211 
01212 /* Define to the value of the EOF integer constant. */
01213 #define _GLIBCXX_STDIO_EOF -1
01214 
01215 /* Define to the value of the SEEK_CUR integer constant. */
01216 #define _GLIBCXX_STDIO_SEEK_CUR 1
01217 
01218 /* Define to the value of the SEEK_END integer constant. */
01219 #define _GLIBCXX_STDIO_SEEK_END 2
01220 
01221 /* Define to use symbol versioning in the shared library. */
01222 #define _GLIBCXX_SYMVER 1
01223 
01224 /* Define to use darwin versioning in the shared library. */
01225 /* #undef _GLIBCXX_SYMVER_DARWIN */
01226 
01227 /* Define to use GNU versioning in the shared library. */
01228 #define _GLIBCXX_SYMVER_GNU 1
01229 
01230 /* Define to use GNU namespace versioning in the shared library. */
01231 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
01232 
01233 /* Define to use Sun versioning in the shared library. */
01234 /* #undef _GLIBCXX_SYMVER_SUN */
01235 
01236 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
01237    <stdio.h>, and <stdlib.h> can be used or exposed. */
01238 #define _GLIBCXX_USE_C99 1
01239 
01240 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
01241    compiler builtins for these functions requires corresponding C99 library
01242    functions to be present. */
01243 #define _GLIBCXX_USE_C99_COMPLEX 1
01244 
01245 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
01246    Using compiler builtins for these functions requires corresponding C99
01247    library functions to be present. */
01248 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
01249 
01250 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
01251    namespace std::tr1. */
01252 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
01253 
01254 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
01255    namespace std::tr1. */
01256 #define _GLIBCXX_USE_C99_FENV_TR1 1
01257 
01258 /* Define if C99 functions in <inttypes.h> should be imported in
01259    <tr1/cinttypes> in namespace std::tr1. */
01260 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
01261 
01262 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
01263    <tr1/cinttypes> in namespace std::tr1. */
01264 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
01265 
01266 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
01267    in namespace std. */
01268 #define _GLIBCXX_USE_C99_MATH 1
01269 
01270 /* Define if C99 functions or macros in <math.h> should be imported in
01271    <tr1/cmath> in namespace std::tr1. */
01272 #define _GLIBCXX_USE_C99_MATH_TR1 1
01273 
01274 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
01275    namespace std::tr1. */
01276 #define _GLIBCXX_USE_C99_STDINT_TR1 1
01277 
01278 /* Defined if clock_gettime has monotonic clock support. */
01279 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
01280 
01281 /* Defined if clock_gettime syscall has monotonic and realtime clock support. */
01282 #define _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL 1
01283 
01284 /* Defined if clock_gettime has realtime clock support. */
01285 #define _GLIBCXX_USE_CLOCK_REALTIME 1
01286 
01287 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
01288    this host. */
01289 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
01290 
01291 /* Define if __float128 is supported on this host. */
01292 #define _GLIBCXX_USE_FLOAT128 1
01293 
01294 /* Defined if gettimeofday is available. */
01295 #define _GLIBCXX_USE_GETTIMEOFDAY 1
01296 
01297 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
01298 #define _GLIBCXX_USE_GET_NPROCS 1
01299 
01300 /* Define if __int128 is supported on this host. */
01301 #define _GLIBCXX_USE_INT128 1
01302 
01303 /* Define if LFS support is available. */
01304 #define _GLIBCXX_USE_LFS 1
01305 
01306 /* Define if code specialized for long long should be used. */
01307 #define _GLIBCXX_USE_LONG_LONG 1
01308 
01309 /* Defined if nanosleep is available. */
01310 /* #undef _GLIBCXX_USE_NANOSLEEP */
01311 
01312 /* Define if NLS translations are to be used. */
01313 #define _GLIBCXX_USE_NLS 1
01314 
01315 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
01316 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
01317 
01318 /* Define if /dev/random and /dev/urandom are available for the random_device
01319    of TR1 (Chapter 5.1). */
01320 #define _GLIBCXX_USE_RANDOM_TR1 1
01321 
01322 /* Defined if sched_yield is available. */
01323 /* #undef _GLIBCXX_USE_SCHED_YIELD */
01324 
01325 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
01326 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
01327 
01328 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
01329 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
01330 
01331 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
01332 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
01333 
01334 /* Define if code specialized for wchar_t should be used. */
01335 #define _GLIBCXX_USE_WCHAR_T 1
01336 
01337 /* Define to 1 if a verbose library is built, or 0 otherwise. */
01338 #define _GLIBCXX_VERBOSE 1
01339 
01340 /* Defined if as can handle rdrand. */
01341 #define _GLIBCXX_X86_RDRAND 1
01342 
01343 /* Define to 1 if mutex_timedlock is available. */
01344 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
01345 
01346 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
01347 # define _GLIBCXX_HAVE_ACOSF 1
01348 # define acosf _acosf
01349 #endif
01350 
01351 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
01352 # define _GLIBCXX_HAVE_ACOSL 1
01353 # define acosl _acosl
01354 #endif
01355 
01356 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
01357 # define _GLIBCXX_HAVE_ASINF 1
01358 # define asinf _asinf
01359 #endif
01360 
01361 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
01362 # define _GLIBCXX_HAVE_ASINL 1
01363 # define asinl _asinl
01364 #endif
01365 
01366 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
01367 # define _GLIBCXX_HAVE_ATAN2F 1
01368 # define atan2f _atan2f
01369 #endif
01370 
01371 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
01372 # define _GLIBCXX_HAVE_ATAN2L 1
01373 # define atan2l _atan2l
01374 #endif
01375 
01376 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
01377 # define _GLIBCXX_HAVE_ATANF 1
01378 # define atanf _atanf
01379 #endif
01380 
01381 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
01382 # define _GLIBCXX_HAVE_ATANL 1
01383 # define atanl _atanl
01384 #endif
01385 
01386 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
01387 # define _GLIBCXX_HAVE_CEILF 1
01388 # define ceilf _ceilf
01389 #endif
01390 
01391 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
01392 # define _GLIBCXX_HAVE_CEILL 1
01393 # define ceill _ceill
01394 #endif
01395 
01396 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
01397 # define _GLIBCXX_HAVE_COSF 1
01398 # define cosf _cosf
01399 #endif
01400 
01401 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
01402 # define _GLIBCXX_HAVE_COSHF 1
01403 # define coshf _coshf
01404 #endif
01405 
01406 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
01407 # define _GLIBCXX_HAVE_COSHL 1
01408 # define coshl _coshl
01409 #endif
01410 
01411 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
01412 # define _GLIBCXX_HAVE_COSL 1
01413 # define cosl _cosl
01414 #endif
01415 
01416 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
01417 # define _GLIBCXX_HAVE_EXPF 1
01418 # define expf _expf
01419 #endif
01420 
01421 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
01422 # define _GLIBCXX_HAVE_EXPL 1
01423 # define expl _expl
01424 #endif
01425 
01426 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
01427 # define _GLIBCXX_HAVE_FABSF 1
01428 # define fabsf _fabsf
01429 #endif
01430 
01431 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
01432 # define _GLIBCXX_HAVE_FABSL 1
01433 # define fabsl _fabsl
01434 #endif
01435 
01436 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
01437 # define _GLIBCXX_HAVE_FINITE 1
01438 # define finite _finite
01439 #endif
01440 
01441 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
01442 # define _GLIBCXX_HAVE_FINITEF 1
01443 # define finitef _finitef
01444 #endif
01445 
01446 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
01447 # define _GLIBCXX_HAVE_FINITEL 1
01448 # define finitel _finitel
01449 #endif
01450 
01451 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
01452 # define _GLIBCXX_HAVE_FLOORF 1
01453 # define floorf _floorf
01454 #endif
01455 
01456 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
01457 # define _GLIBCXX_HAVE_FLOORL 1
01458 # define floorl _floorl
01459 #endif
01460 
01461 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
01462 # define _GLIBCXX_HAVE_FMODF 1
01463 # define fmodf _fmodf
01464 #endif
01465 
01466 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
01467 # define _GLIBCXX_HAVE_FMODL 1
01468 # define fmodl _fmodl
01469 #endif
01470 
01471 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
01472 # define _GLIBCXX_HAVE_FPCLASS 1
01473 # define fpclass _fpclass
01474 #endif
01475 
01476 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
01477 # define _GLIBCXX_HAVE_FREXPF 1
01478 # define frexpf _frexpf
01479 #endif
01480 
01481 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
01482 # define _GLIBCXX_HAVE_FREXPL 1
01483 # define frexpl _frexpl
01484 #endif
01485 
01486 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
01487 # define _GLIBCXX_HAVE_HYPOT 1
01488 # define hypot _hypot
01489 #endif
01490 
01491 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
01492 # define _GLIBCXX_HAVE_HYPOTF 1
01493 # define hypotf _hypotf
01494 #endif
01495 
01496 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
01497 # define _GLIBCXX_HAVE_HYPOTL 1
01498 # define hypotl _hypotl
01499 #endif
01500 
01501 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
01502 # define _GLIBCXX_HAVE_ISINF 1
01503 # define isinf _isinf
01504 #endif
01505 
01506 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
01507 # define _GLIBCXX_HAVE_ISINFF 1
01508 # define isinff _isinff
01509 #endif
01510 
01511 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
01512 # define _GLIBCXX_HAVE_ISINFL 1
01513 # define isinfl _isinfl
01514 #endif
01515 
01516 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
01517 # define _GLIBCXX_HAVE_ISNAN 1
01518 # define isnan _isnan
01519 #endif
01520 
01521 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
01522 # define _GLIBCXX_HAVE_ISNANF 1
01523 # define isnanf _isnanf
01524 #endif
01525 
01526 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
01527 # define _GLIBCXX_HAVE_ISNANL 1
01528 # define isnanl _isnanl
01529 #endif
01530 
01531 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
01532 # define _GLIBCXX_HAVE_LDEXPF 1
01533 # define ldexpf _ldexpf
01534 #endif
01535 
01536 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
01537 # define _GLIBCXX_HAVE_LDEXPL 1
01538 # define ldexpl _ldexpl
01539 #endif
01540 
01541 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
01542 # define _GLIBCXX_HAVE_LOG10F 1
01543 # define log10f _log10f
01544 #endif
01545 
01546 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
01547 # define _GLIBCXX_HAVE_LOG10L 1
01548 # define log10l _log10l
01549 #endif
01550 
01551 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
01552 # define _GLIBCXX_HAVE_LOGF 1
01553 # define logf _logf
01554 #endif
01555 
01556 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
01557 # define _GLIBCXX_HAVE_LOGL 1
01558 # define logl _logl
01559 #endif
01560 
01561 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
01562 # define _GLIBCXX_HAVE_MODF 1
01563 # define modf _modf
01564 #endif
01565 
01566 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
01567 # define _GLIBCXX_HAVE_MODFF 1
01568 # define modff _modff
01569 #endif
01570 
01571 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
01572 # define _GLIBCXX_HAVE_MODFL 1
01573 # define modfl _modfl
01574 #endif
01575 
01576 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
01577 # define _GLIBCXX_HAVE_POWF 1
01578 # define powf _powf
01579 #endif
01580 
01581 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
01582 # define _GLIBCXX_HAVE_POWL 1
01583 # define powl _powl
01584 #endif
01585 
01586 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
01587 # define _GLIBCXX_HAVE_QFPCLASS 1
01588 # define qfpclass _qfpclass
01589 #endif
01590 
01591 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
01592 # define _GLIBCXX_HAVE_SINCOS 1
01593 # define sincos _sincos
01594 #endif
01595 
01596 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
01597 # define _GLIBCXX_HAVE_SINCOSF 1
01598 # define sincosf _sincosf
01599 #endif
01600 
01601 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
01602 # define _GLIBCXX_HAVE_SINCOSL 1
01603 # define sincosl _sincosl
01604 #endif
01605 
01606 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
01607 # define _GLIBCXX_HAVE_SINF 1
01608 # define sinf _sinf
01609 #endif
01610 
01611 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
01612 # define _GLIBCXX_HAVE_SINHF 1
01613 # define sinhf _sinhf
01614 #endif
01615 
01616 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
01617 # define _GLIBCXX_HAVE_SINHL 1
01618 # define sinhl _sinhl
01619 #endif
01620 
01621 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
01622 # define _GLIBCXX_HAVE_SINL 1
01623 # define sinl _sinl
01624 #endif
01625 
01626 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
01627 # define _GLIBCXX_HAVE_SQRTF 1
01628 # define sqrtf _sqrtf
01629 #endif
01630 
01631 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
01632 # define _GLIBCXX_HAVE_SQRTL 1
01633 # define sqrtl _sqrtl
01634 #endif
01635 
01636 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
01637 # define _GLIBCXX_HAVE_STRTOF 1
01638 # define strtof _strtof
01639 #endif
01640 
01641 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
01642 # define _GLIBCXX_HAVE_STRTOLD 1
01643 # define strtold _strtold
01644 #endif
01645 
01646 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
01647 # define _GLIBCXX_HAVE_TANF 1
01648 # define tanf _tanf
01649 #endif
01650 
01651 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
01652 # define _GLIBCXX_HAVE_TANHF 1
01653 # define tanhf _tanhf
01654 #endif
01655 
01656 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
01657 # define _GLIBCXX_HAVE_TANHL 1
01658 # define tanhl _tanhl
01659 #endif
01660 
01661 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
01662 # define _GLIBCXX_HAVE_TANL 1
01663 # define tanl _tanl
01664 #endif
01665 
01666 #endif // _GLIBCXX_CXX_CONFIG_H