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