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