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