c++config.h

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