1 /* This file is automatically generated. DO NOT EDIT! */ 2 /* Generated from: NetBSD: mknative-gcc.old,v 1.5 2017/10/04 21:42:20 christos Exp */ 3 /* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */ 4 5 // Predefined symbols and macros -*- C++ -*- 6 7 // Copyright (C) 1997-2015 Free Software Foundation, Inc. 8 // 9 // This file is part of the GNU ISO C++ Library. This library is free 10 // software; you can redistribute it and/or modify it under the 11 // terms of the GNU General Public License as published by the 12 // Free Software Foundation; either version 3, or (at your option) 13 // any later version. 14 15 // This library is distributed in the hope that it will be useful, 16 // but WITHOUT ANY WARRANTY; without even the implied warranty of 17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 // GNU General Public License for more details. 19 20 // Under Section 7 of GPL version 3, you are granted additional 21 // permissions described in the GCC Runtime Library Exception, version 22 // 3.1, as published by the Free Software Foundation. 23 24 // You should have received a copy of the GNU General Public License and 25 // a copy of the GCC Runtime Library Exception along with this program; 26 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 27 // <http://www.gnu.org/licenses/>. 28 29 /** @file bits/c++config.h 30 * This is an internal header file, included by other library headers. 31 * Do not attempt to use it directly. @headername{iosfwd} 32 */ 33 34 #ifndef _GLIBCXX_CXX_CONFIG_H 35 #define _GLIBCXX_CXX_CONFIG_H 1 36 37 // The current version of the C++ library in compressed ISO date format. 38 #define __GLIBCXX__ 20171010 39 40 // Macros for various attributes. 41 // _GLIBCXX_PURE 42 // _GLIBCXX_CONST 43 // _GLIBCXX_NORETURN 44 // _GLIBCXX_NOTHROW 45 // _GLIBCXX_VISIBILITY 46 #ifndef _GLIBCXX_PURE 47 # define _GLIBCXX_PURE __attribute__ ((__pure__)) 48 #endif 49 50 #ifndef _GLIBCXX_CONST 51 # define _GLIBCXX_CONST __attribute__ ((__const__)) 52 #endif 53 54 #ifndef _GLIBCXX_NORETURN 55 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__)) 56 #endif 57 58 // See below for C++ 59 #ifndef _GLIBCXX_NOTHROW 60 # ifndef __cplusplus 61 # define _GLIBCXX_NOTHROW __attribute__((__nothrow__)) 62 # endif 63 #endif 64 65 // Macros for visibility attributes. 66 // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 67 // _GLIBCXX_VISIBILITY 68 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1 69 70 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 71 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V))) 72 #else 73 // If this is not supplied by the OS-specific or CPU-specific 74 // headers included below, it will be defined to an empty default. 75 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V) 76 #endif 77 78 // Macros for deprecated attributes. 79 // _GLIBCXX_USE_DEPRECATED 80 // _GLIBCXX_DEPRECATED 81 #ifndef _GLIBCXX_USE_DEPRECATED 82 # define _GLIBCXX_USE_DEPRECATED 1 83 #endif 84 85 #if defined(__DEPRECATED) && (__cplusplus >= 201103L) 86 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__)) 87 #else 88 # define _GLIBCXX_DEPRECATED 89 #endif 90 91 // Macros for ABI tag attributes. 92 #ifndef _GLIBCXX_ABI_TAG_CXX11 93 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11"))) 94 #endif 95 96 97 #if __cplusplus 98 99 // Macro for constexpr, to support in mixed 03/0x mode. 100 #ifndef _GLIBCXX_CONSTEXPR 101 # if __cplusplus >= 201103L 102 # define _GLIBCXX_CONSTEXPR constexpr 103 # define _GLIBCXX_USE_CONSTEXPR constexpr 104 # else 105 # define _GLIBCXX_CONSTEXPR 106 # define _GLIBCXX_USE_CONSTEXPR const 107 # endif 108 #endif 109 110 #ifndef _GLIBCXX14_CONSTEXPR 111 # if __cplusplus >= 201402L 112 # define _GLIBCXX14_CONSTEXPR constexpr 113 # else 114 # define _GLIBCXX14_CONSTEXPR 115 # endif 116 #endif 117 118 // Macro for noexcept, to support in mixed 03/0x mode. 119 #ifndef _GLIBCXX_NOEXCEPT 120 # if __cplusplus >= 201103L 121 # define _GLIBCXX_NOEXCEPT noexcept 122 # define _GLIBCXX_USE_NOEXCEPT noexcept 123 # define _GLIBCXX_THROW(_EXC) 124 # else 125 # define _GLIBCXX_NOEXCEPT 126 # define _GLIBCXX_USE_NOEXCEPT throw() 127 # define _GLIBCXX_THROW(_EXC) throw(_EXC) 128 # endif 129 #endif 130 131 #ifndef _GLIBCXX_NOTHROW 132 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT 133 #endif 134 135 #ifndef _GLIBCXX_THROW_OR_ABORT 136 # if __cpp_exceptions 137 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC)) 138 # else 139 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort()) 140 # endif 141 #endif 142 143 // Macro for extern template, ie controling template linkage via use 144 // of extern keyword on template declaration. As documented in the g++ 145 // manual, it inhibits all implicit instantiations and is used 146 // throughout the library to avoid multiple weak definitions for 147 // required types that are already explicitly instantiated in the 148 // library binary. This substantially reduces the binary size of 149 // resulting executables. 150 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern 151 // templates only in basic_string, thus activating its debug-mode 152 // checks even at -O0. 153 # define _GLIBCXX_EXTERN_TEMPLATE 1 154 155 /* 156 Outline of libstdc++ namespaces. 157 158 namespace std 159 { 160 namespace __debug { } 161 namespace __parallel { } 162 namespace __profile { } 163 namespace __cxx1998 { } 164 165 namespace __detail { } 166 167 namespace rel_ops { } 168 169 namespace tr1 170 { 171 namespace placeholders { } 172 namespace regex_constants { } 173 namespace __detail { } 174 } 175 176 namespace tr2 { } 177 178 namespace decimal { } 179 180 namespace chrono { } 181 namespace placeholders { } 182 namespace regex_constants { } 183 namespace this_thread { } 184 inline namespace literals { 185 inline namespace chrono_literals { } 186 inline namespace complex_literals { } 187 inline namespace string_literals { } 188 } 189 } 190 191 namespace abi { } 192 193 namespace __gnu_cxx 194 { 195 namespace __detail { } 196 } 197 198 For full details see: 199 http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html 200 */ 201 namespace std 202 { 203 typedef __SIZE_TYPE__ size_t; 204 typedef __PTRDIFF_TYPE__ ptrdiff_t; 205 206 #if __cplusplus >= 201103L 207 typedef decltype(nullptr) nullptr_t; 208 #endif 209 } 210 211 # define _GLIBCXX_USE_DUAL_ABI 0 212 213 #if ! _GLIBCXX_USE_DUAL_ABI 214 // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI 215 # undef _GLIBCXX_USE_CXX11_ABI 216 #endif 217 218 #ifndef _GLIBCXX_USE_CXX11_ABI 219 # define _GLIBCXX_USE_CXX11_ABI 0 220 #endif 221 222 #if _GLIBCXX_USE_CXX11_ABI 223 namespace std 224 { 225 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { } 226 } 227 namespace __gnu_cxx 228 { 229 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { } 230 } 231 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11:: 232 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 { 233 # define _GLIBCXX_END_NAMESPACE_CXX11 } 234 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11 235 #else 236 # define _GLIBCXX_NAMESPACE_CXX11 237 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 238 # define _GLIBCXX_END_NAMESPACE_CXX11 239 # define _GLIBCXX_DEFAULT_ABI_TAG 240 #endif 241 242 243 // Defined if inline namespaces are used for versioning. 244 # define _GLIBCXX_INLINE_VERSION 0 245 246 // Inline namespace for symbol versioning. 247 #if _GLIBCXX_INLINE_VERSION 248 249 namespace std 250 { 251 inline namespace __7 { } 252 253 namespace rel_ops { inline namespace __7 { } } 254 255 namespace tr1 256 { 257 inline namespace __7 { } 258 namespace placeholders { inline namespace __7 { } } 259 namespace regex_constants { inline namespace __7 { } } 260 namespace __detail { inline namespace __7 { } } 261 } 262 263 namespace tr2 264 { inline namespace __7 { } } 265 266 namespace decimal { inline namespace __7 { } } 267 268 namespace chrono { inline namespace __7 { } } 269 namespace placeholders { inline namespace __7 { } } 270 namespace regex_constants { inline namespace __7 { } } 271 namespace this_thread { inline namespace __7 { } } 272 273 inline namespace literals { 274 inline namespace chrono_literals { inline namespace __7 { } } 275 inline namespace complex_literals { inline namespace __7 { } } 276 inline namespace string_literals { inline namespace __7 { } } 277 } 278 279 namespace __detail { inline namespace __7 { } } 280 } 281 282 namespace __gnu_cxx 283 { 284 inline namespace __7 { } 285 namespace __detail { inline namespace __7 { } } 286 } 287 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 { 288 # define _GLIBCXX_END_NAMESPACE_VERSION } 289 #else 290 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION 291 # define _GLIBCXX_END_NAMESPACE_VERSION 292 #endif 293 294 295 // Inline namespaces for special modes: debug, parallel, profile. 296 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \ 297 || defined(_GLIBCXX_PROFILE) 298 namespace std 299 { 300 // Non-inline namespace for components replaced by alternates in active mode. 301 namespace __cxx1998 302 { 303 # if _GLIBCXX_INLINE_VERSION 304 inline namespace __7 { } 305 # endif 306 307 # if _GLIBCXX_USE_CXX11_ABI 308 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { } 309 # endif 310 } 311 312 // Inline namespace for debug mode. 313 # ifdef _GLIBCXX_DEBUG 314 inline namespace __debug { } 315 # endif 316 317 // Inline namespaces for parallel mode. 318 # ifdef _GLIBCXX_PARALLEL 319 inline namespace __parallel { } 320 # endif 321 322 // Inline namespaces for profile mode 323 # ifdef _GLIBCXX_PROFILE 324 inline namespace __profile { } 325 # endif 326 } 327 328 // Check for invalid usage and unsupported mixed-mode use. 329 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL) 330 # error illegal use of multiple inlined namespaces 331 # endif 332 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG) 333 # error illegal use of multiple inlined namespaces 334 # endif 335 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL) 336 # error illegal use of multiple inlined namespaces 337 # endif 338 339 // Check for invalid use due to lack for weak symbols. 340 # if __NO_INLINE__ && !__GXX_WEAK__ 341 # warning currently using inlined namespace mode which may fail \ 342 without inlining due to lack of weak symbols 343 # endif 344 #endif 345 346 // Macros for namespace scope. Either namespace std:: or the name 347 // of some nested namespace within it corresponding to the active mode. 348 // _GLIBCXX_STD_A 349 // _GLIBCXX_STD_C 350 // 351 // Macros for opening/closing conditional namespaces. 352 // _GLIBCXX_BEGIN_NAMESPACE_ALGO 353 // _GLIBCXX_END_NAMESPACE_ALGO 354 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 355 // _GLIBCXX_END_NAMESPACE_CONTAINER 356 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE) 357 # define _GLIBCXX_STD_C __cxx1998 358 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \ 359 namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION 360 # define _GLIBCXX_END_NAMESPACE_CONTAINER \ 361 _GLIBCXX_END_NAMESPACE_VERSION } 362 # undef _GLIBCXX_EXTERN_TEMPLATE 363 # define _GLIBCXX_EXTERN_TEMPLATE -1 364 #endif 365 366 #ifdef _GLIBCXX_PARALLEL 367 # define _GLIBCXX_STD_A __cxx1998 368 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \ 369 namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION 370 # define _GLIBCXX_END_NAMESPACE_ALGO \ 371 _GLIBCXX_END_NAMESPACE_VERSION } 372 #endif 373 374 #ifndef _GLIBCXX_STD_A 375 # define _GLIBCXX_STD_A std 376 #endif 377 378 #ifndef _GLIBCXX_STD_C 379 # define _GLIBCXX_STD_C std 380 #endif 381 382 #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO 383 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO 384 #endif 385 386 #ifndef _GLIBCXX_END_NAMESPACE_ALGO 387 # define _GLIBCXX_END_NAMESPACE_ALGO 388 #endif 389 390 #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 391 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 392 #endif 393 394 #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER 395 # define _GLIBCXX_END_NAMESPACE_CONTAINER 396 #endif 397 398 // GLIBCXX_ABI Deprecated 399 // Define if compatibility should be provided for -mlong-double-64. 400 #undef _GLIBCXX_LONG_DOUBLE_COMPAT 401 402 // Inline namespace for long double 128 mode. 403 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__ 404 namespace std 405 { 406 inline namespace __gnu_cxx_ldbl128 { } 407 } 408 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128:: 409 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 { 410 # define _GLIBCXX_END_NAMESPACE_LDBL } 411 #else 412 # define _GLIBCXX_NAMESPACE_LDBL 413 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL 414 # define _GLIBCXX_END_NAMESPACE_LDBL 415 #endif 416 #if _GLIBCXX_USE_CXX11_ABI 417 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11 418 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11 419 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11 420 #else 421 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL 422 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL 423 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL 424 #endif 425 426 // Assert. 427 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL) 428 # define __glibcxx_assert(_Condition) 429 #else 430 namespace std 431 { 432 // Avoid the use of assert, because we're trying to keep the <cassert> 433 // include out of the mix. 434 inline void 435 __replacement_assert(const char* __file, int __line, 436 const char* __function, const char* __condition) 437 { 438 __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line, 439 __function, __condition); 440 __builtin_abort(); 441 } 442 } 443 #define __glibcxx_assert(_Condition) \ 444 do \ 445 { \ 446 if (! (_Condition)) \ 447 std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \ 448 #_Condition); \ 449 } while (false) 450 #endif 451 452 // Macros for race detectors. 453 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and 454 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain 455 // atomic (lock-free) synchronization to race detectors: 456 // the race detector will infer a happens-before arc from the former to the 457 // latter when they share the same argument pointer. 458 // 459 // The most frequent use case for these macros (and the only case in the 460 // current implementation of the library) is atomic reference counting: 461 // void _M_remove_reference() 462 // { 463 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount); 464 // if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0) 465 // { 466 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount); 467 // _M_destroy(__a); 468 // } 469 // } 470 // The annotations in this example tell the race detector that all memory 471 // accesses occurred when the refcount was positive do not race with 472 // memory accesses which occurred after the refcount became zero. 473 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE 474 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) 475 #endif 476 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER 477 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) 478 #endif 479 480 // Macros for C linkage: define extern "C" linkage only when using C++. 481 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" { 482 # define _GLIBCXX_END_EXTERN_C } 483 484 #else // !__cplusplus 485 # define _GLIBCXX_BEGIN_EXTERN_C 486 # define _GLIBCXX_END_EXTERN_C 487 #endif 488 489 490 // First includes. 491 492 // Pick up any OS-specific definitions. 493 #include <bits/os_defines.h> 494 495 // Pick up any CPU-specific definitions. 496 #include <bits/cpu_defines.h> 497 498 // If platform uses neither visibility nor psuedo-visibility, 499 // specify empty default for namespace annotation macros. 500 #ifndef _GLIBCXX_PSEUDO_VISIBILITY 501 # define _GLIBCXX_PSEUDO_VISIBILITY(V) 502 #endif 503 504 // Certain function definitions that are meant to be overridable from 505 // user code are decorated with this macro. For some targets, this 506 // macro causes these definitions to be weak. 507 #ifndef _GLIBCXX_WEAK_DEFINITION 508 # define _GLIBCXX_WEAK_DEFINITION 509 #endif 510 511 512 // The remainder of the prewritten config is automatic; all the 513 // user hooks are listed above. 514 515 // Create a boolean flag to be used to determine if --fast-math is set. 516 #ifdef __FAST_MATH__ 517 # define _GLIBCXX_FAST_MATH 1 518 #else 519 # define _GLIBCXX_FAST_MATH 0 520 #endif 521 522 // This marks string literals in header files to be extracted for eventual 523 // translation. It is primarily used for messages in thrown exceptions; see 524 // src/functexcept.cc. We use __N because the more traditional _N is used 525 // for something else under certain OSes (see BADNAMES). 526 #define __N(msgid) (msgid) 527 528 // For example, <windows.h> is known to #define min and max as macros... 529 #undef min 530 #undef max 531 532 // End of prewritten config; the settings discovered at configure time follow. 533 /* config.h. Generated from config.h.in by configure. */ 534 /* config.h.in. Generated from configure.ac by autoheader. */ 535 536 /* Define to 1 if you have the `acosf' function. */ 537 #define _GLIBCXX_HAVE_ACOSF 1 538 539 /* Define to 1 if you have the `acosl' function. */ 540 #define _GLIBCXX_HAVE_ACOSL 1 541 542 /* Define to 1 if you have the `asinf' function. */ 543 #define _GLIBCXX_HAVE_ASINF 1 544 545 /* Define to 1 if you have the `asinl' function. */ 546 #define _GLIBCXX_HAVE_ASINL 1 547 548 /* Define to 1 if the target assembler supports .symver directive. */ 549 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1 550 551 /* Define to 1 if you have the `atan2f' function. */ 552 #define _GLIBCXX_HAVE_ATAN2F 1 553 554 /* Define to 1 if you have the `atan2l' function. */ 555 #define _GLIBCXX_HAVE_ATAN2L 1 556 557 /* Define to 1 if you have the `atanf' function. */ 558 #define _GLIBCXX_HAVE_ATANF 1 559 560 /* Define to 1 if you have the `atanl' function. */ 561 #define _GLIBCXX_HAVE_ATANL 1 562 563 /* Define to 1 if you have the `at_quick_exit' function. */ 564 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1 565 566 /* Define to 1 if the target assembler supports thread-local storage. */ 567 /* #undef _GLIBCXX_HAVE_CC_TLS */ 568 569 /* Define to 1 if you have the `ceilf' function. */ 570 #define _GLIBCXX_HAVE_CEILF 1 571 572 /* Define to 1 if you have the `ceill' function. */ 573 #define _GLIBCXX_HAVE_CEILL 1 574 575 /* Define to 1 if you have the <complex.h> header file. */ 576 #define _GLIBCXX_HAVE_COMPLEX_H 1 577 578 /* Define to 1 if you have the `cosf' function. */ 579 #define _GLIBCXX_HAVE_COSF 1 580 581 /* Define to 1 if you have the `coshf' function. */ 582 #define _GLIBCXX_HAVE_COSHF 1 583 584 /* Define to 1 if you have the `coshl' function. */ 585 #define _GLIBCXX_HAVE_COSHL 1 586 587 /* Define to 1 if you have the `cosl' function. */ 588 #define _GLIBCXX_HAVE_COSL 1 589 590 /* Define to 1 if you have the <dirent.h> header file. */ 591 #define _GLIBCXX_HAVE_DIRENT_H 1 592 593 /* Define to 1 if you have the <dlfcn.h> header file. */ 594 #define _GLIBCXX_HAVE_DLFCN_H 1 595 596 /* Define if EBADMSG exists. */ 597 #define _GLIBCXX_HAVE_EBADMSG 1 598 599 /* Define if ECANCELED exists. */ 600 #define _GLIBCXX_HAVE_ECANCELED 1 601 602 /* Define if ECHILD exists. */ 603 #define _GLIBCXX_HAVE_ECHILD 1 604 605 /* Define if EIDRM exists. */ 606 #define _GLIBCXX_HAVE_EIDRM 1 607 608 /* Define to 1 if you have the <endian.h> header file. */ 609 #define _GLIBCXX_HAVE_ENDIAN_H 1 610 611 /* Define if ENODATA exists. */ 612 #define _GLIBCXX_HAVE_ENODATA 1 613 614 /* Define if ENOLINK exists. */ 615 #define _GLIBCXX_HAVE_ENOLINK 1 616 617 /* Define if ENOSPC exists. */ 618 #define _GLIBCXX_HAVE_ENOSPC 1 619 620 /* Define if ENOSR exists. */ 621 #define _GLIBCXX_HAVE_ENOSR 1 622 623 /* Define if ENOSTR exists. */ 624 #define _GLIBCXX_HAVE_ENOSTR 1 625 626 /* Define if ENOTRECOVERABLE exists. */ 627 /* #undef _GLIBCXX_HAVE_ENOTRECOVERABLE */ 628 629 /* Define if ENOTSUP exists. */ 630 #define _GLIBCXX_HAVE_ENOTSUP 1 631 632 /* Define if EOVERFLOW exists. */ 633 #define _GLIBCXX_HAVE_EOVERFLOW 1 634 635 /* Define if EOWNERDEAD exists. */ 636 /* #undef _GLIBCXX_HAVE_EOWNERDEAD */ 637 638 /* Define if EPERM exists. */ 639 #define _GLIBCXX_HAVE_EPERM 1 640 641 /* Define if EPROTO exists. */ 642 #define _GLIBCXX_HAVE_EPROTO 1 643 644 /* Define if ETIME exists. */ 645 #define _GLIBCXX_HAVE_ETIME 1 646 647 /* Define if ETIMEDOUT exists. */ 648 #define _GLIBCXX_HAVE_ETIMEDOUT 1 649 650 /* Define if ETXTBSY exists. */ 651 #define _GLIBCXX_HAVE_ETXTBSY 1 652 653 /* Define if EWOULDBLOCK exists. */ 654 #define _GLIBCXX_HAVE_EWOULDBLOCK 1 655 656 /* Define to 1 if you have the <execinfo.h> header file. */ 657 #define _GLIBCXX_HAVE_EXECINFO_H 1 658 659 /* Define to 1 if you have the `expf' function. */ 660 #define _GLIBCXX_HAVE_EXPF 1 661 662 /* Define to 1 if you have the `expl' function. */ 663 #define _GLIBCXX_HAVE_EXPL 1 664 665 /* Define to 1 if you have the `fabsf' function. */ 666 #define _GLIBCXX_HAVE_FABSF 1 667 668 /* Define to 1 if you have the `fabsl' function. */ 669 /* #undef _GLIBCXX_HAVE_FABSL */ 670 671 /* Define to 1 if you have the <fcntl.h> header file. */ 672 #define _GLIBCXX_HAVE_FCNTL_H 1 673 674 /* Define to 1 if you have the <fenv.h> header file. */ 675 #define _GLIBCXX_HAVE_FENV_H 1 676 677 /* Define to 1 if you have the `finite' function. */ 678 #define _GLIBCXX_HAVE_FINITE 1 679 680 /* Define to 1 if you have the `finitef' function. */ 681 #define _GLIBCXX_HAVE_FINITEF 1 682 683 /* Define to 1 if you have the `finitel' function. */ 684 /* #undef _GLIBCXX_HAVE_FINITEL */ 685 686 /* Define to 1 if you have the <float.h> header file. */ 687 #define _GLIBCXX_HAVE_FLOAT_H 1 688 689 /* Define to 1 if you have the `floorf' function. */ 690 #define _GLIBCXX_HAVE_FLOORF 1 691 692 /* Define to 1 if you have the `floorl' function. */ 693 #define _GLIBCXX_HAVE_FLOORL 1 694 695 /* Define to 1 if you have the `fmodf' function. */ 696 #define _GLIBCXX_HAVE_FMODF 1 697 698 /* Define to 1 if you have the `fmodl' function. */ 699 #define _GLIBCXX_HAVE_FMODL 1 700 701 /* Define to 1 if you have the `fpclass' function. */ 702 /* #undef _GLIBCXX_HAVE_FPCLASS */ 703 704 /* Define to 1 if you have the <fp.h> header file. */ 705 /* #undef _GLIBCXX_HAVE_FP_H */ 706 707 /* Define to 1 if you have the `frexpf' function. */ 708 #define _GLIBCXX_HAVE_FREXPF 1 709 710 /* Define to 1 if you have the `frexpl' function. */ 711 /* #undef _GLIBCXX_HAVE_FREXPL */ 712 713 /* Define if _Unwind_GetIPInfo is available. */ 714 #define _GLIBCXX_HAVE_GETIPINFO 1 715 716 /* Define if gets is available in <stdio.h>. */ 717 #define _GLIBCXX_HAVE_GETS 1 718 719 /* Define to 1 if you have the `hypot' function. */ 720 #define _GLIBCXX_HAVE_HYPOT 1 721 722 /* Define to 1 if you have the `hypotf' function. */ 723 #define _GLIBCXX_HAVE_HYPOTF 1 724 725 /* Define to 1 if you have the `hypotl' function. */ 726 #define _GLIBCXX_HAVE_HYPOTL 1 727 728 /* Define if you have the iconv() function. */ 729 #define _GLIBCXX_HAVE_ICONV 1 730 731 /* Define to 1 if you have the <ieeefp.h> header file. */ 732 #define _GLIBCXX_HAVE_IEEEFP_H 1 733 734 /* Define if int64_t is available in <stdint.h>. */ 735 #define _GLIBCXX_HAVE_INT64_T 1 736 737 /* Define if int64_t is a long. */ 738 /* #undef _GLIBCXX_HAVE_INT64_T_LONG */ 739 740 /* Define if int64_t is a long long. */ 741 #define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1 742 743 /* Define to 1 if you have the <inttypes.h> header file. */ 744 #define _GLIBCXX_HAVE_INTTYPES_H 1 745 746 /* Define to 1 if you have the `isinf' function. */ 747 #define _GLIBCXX_HAVE_ISINF 1 748 749 /* Define to 1 if you have the `isinff' function. */ 750 #define _GLIBCXX_HAVE_ISINFF 1 751 752 /* Define to 1 if you have the `isinfl' function. */ 753 /* #undef _GLIBCXX_HAVE_ISINFL */ 754 755 /* Define to 1 if you have the `isnan' function. */ 756 #define _GLIBCXX_HAVE_ISNAN 1 757 758 /* Define to 1 if you have the `isnanf' function. */ 759 #define _GLIBCXX_HAVE_ISNANF 1 760 761 /* Define to 1 if you have the `isnanl' function. */ 762 /* #undef _GLIBCXX_HAVE_ISNANL */ 763 764 /* Defined if iswblank exists. */ 765 #define _GLIBCXX_HAVE_ISWBLANK 1 766 767 /* Define if LC_MESSAGES is available in <locale.h>. */ 768 #define _GLIBCXX_HAVE_LC_MESSAGES 1 769 770 /* Define to 1 if you have the `ldexpf' function. */ 771 #define _GLIBCXX_HAVE_LDEXPF 1 772 773 /* Define to 1 if you have the `ldexpl' function. */ 774 /* #undef _GLIBCXX_HAVE_LDEXPL */ 775 776 /* Define to 1 if you have the <libintl.h> header file. */ 777 /* #undef _GLIBCXX_HAVE_LIBINTL_H */ 778 779 /* Only used in build directory testsuite_hooks.h. */ 780 #define _GLIBCXX_HAVE_LIMIT_AS 1 781 782 /* Only used in build directory testsuite_hooks.h. */ 783 #define _GLIBCXX_HAVE_LIMIT_DATA 1 784 785 /* Only used in build directory testsuite_hooks.h. */ 786 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1 787 788 /* Only used in build directory testsuite_hooks.h. */ 789 #define _GLIBCXX_HAVE_LIMIT_RSS 1 790 791 /* Only used in build directory testsuite_hooks.h. */ 792 #define _GLIBCXX_HAVE_LIMIT_VMEM 1 793 794 /* Define if futex syscall is available. */ 795 /* #undef _GLIBCXX_HAVE_LINUX_FUTEX */ 796 797 /* Define to 1 if you have the <locale.h> header file. */ 798 #define _GLIBCXX_HAVE_LOCALE_H 1 799 800 /* Define to 1 if you have the `log10f' function. */ 801 #define _GLIBCXX_HAVE_LOG10F 1 802 803 /* Define to 1 if you have the `log10l' function. */ 804 #define _GLIBCXX_HAVE_LOG10L 1 805 806 /* Define to 1 if you have the `logf' function. */ 807 #define _GLIBCXX_HAVE_LOGF 1 808 809 /* Define to 1 if you have the `logl' function. */ 810 #define _GLIBCXX_HAVE_LOGL 1 811 812 /* Define to 1 if you have the <machine/endian.h> header file. */ 813 #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1 814 815 /* Define to 1 if you have the <machine/param.h> header file. */ 816 #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1 817 818 /* Define if mbstate_t exists in wchar.h. */ 819 #define _GLIBCXX_HAVE_MBSTATE_T 1 820 821 /* Define to 1 if you have the <memory.h> header file. */ 822 #define _GLIBCXX_HAVE_MEMORY_H 1 823 824 /* Define to 1 if you have the `modf' function. */ 825 #define _GLIBCXX_HAVE_MODF 1 826 827 /* Define to 1 if you have the `modff' function. */ 828 #define _GLIBCXX_HAVE_MODFF 1 829 830 /* Define to 1 if you have the `modfl' function. */ 831 #define _GLIBCXX_HAVE_MODFL 1 832 833 /* Define to 1 if you have the <nan.h> header file. */ 834 /* #undef _GLIBCXX_HAVE_NAN_H */ 835 836 /* Define if poll is available in <poll.h>. */ 837 #define _GLIBCXX_HAVE_POLL 1 838 839 /* Define to 1 if you have the `powf' function. */ 840 #define _GLIBCXX_HAVE_POWF 1 841 842 /* Define to 1 if you have the `powl' function. */ 843 #define _GLIBCXX_HAVE_POWL 1 844 845 /* Define to 1 if you have the `qfpclass' function. */ 846 /* #undef _GLIBCXX_HAVE_QFPCLASS */ 847 848 /* Define to 1 if you have the `quick_exit' function. */ 849 #define _GLIBCXX_HAVE_QUICK_EXIT 1 850 851 /* Define to 1 if you have the `setenv' function. */ 852 #define _GLIBCXX_HAVE_SETENV 1 853 854 /* Define to 1 if you have the `sincos' function. */ 855 /* #undef _GLIBCXX_HAVE_SINCOS */ 856 857 /* Define to 1 if you have the `sincosf' function. */ 858 /* #undef _GLIBCXX_HAVE_SINCOSF */ 859 860 /* Define to 1 if you have the `sincosl' function. */ 861 /* #undef _GLIBCXX_HAVE_SINCOSL */ 862 863 /* Define to 1 if you have the `sinf' function. */ 864 #define _GLIBCXX_HAVE_SINF 1 865 866 /* Define to 1 if you have the `sinhf' function. */ 867 #define _GLIBCXX_HAVE_SINHF 1 868 869 /* Define to 1 if you have the `sinhl' function. */ 870 #define _GLIBCXX_HAVE_SINHL 1 871 872 /* Define to 1 if you have the `sinl' function. */ 873 #define _GLIBCXX_HAVE_SINL 1 874 875 /* Defined if sleep exists. */ 876 /* #undef _GLIBCXX_HAVE_SLEEP */ 877 878 /* Define to 1 if you have the `sqrtf' function. */ 879 #define _GLIBCXX_HAVE_SQRTF 1 880 881 /* Define to 1 if you have the `sqrtl' function. */ 882 #define _GLIBCXX_HAVE_SQRTL 1 883 884 /* Define to 1 if you have the <stdalign.h> header file. */ 885 #define _GLIBCXX_HAVE_STDALIGN_H 1 886 887 /* Define to 1 if you have the <stdbool.h> header file. */ 888 #define _GLIBCXX_HAVE_STDBOOL_H 1 889 890 /* Define to 1 if you have the <stdint.h> header file. */ 891 #define _GLIBCXX_HAVE_STDINT_H 1 892 893 /* Define to 1 if you have the <stdlib.h> header file. */ 894 #define _GLIBCXX_HAVE_STDLIB_H 1 895 896 /* Define if strerror_l is available in <string.h>. */ 897 /* #undef _GLIBCXX_HAVE_STRERROR_L */ 898 899 /* Define if strerror_r is available in <string.h>. */ 900 #define _GLIBCXX_HAVE_STRERROR_R 1 901 902 /* Define to 1 if you have the <strings.h> header file. */ 903 #define _GLIBCXX_HAVE_STRINGS_H 1 904 905 /* Define to 1 if you have the <string.h> header file. */ 906 #define _GLIBCXX_HAVE_STRING_H 1 907 908 /* Define to 1 if you have the `strtof' function. */ 909 #define _GLIBCXX_HAVE_STRTOF 1 910 911 /* Define to 1 if you have the `strtold' function. */ 912 #define _GLIBCXX_HAVE_STRTOLD 1 913 914 /* Define to 1 if `d_type' is a member of `struct dirent'. */ 915 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1 916 917 /* Define if strxfrm_l is available in <string.h>. */ 918 /* #undef _GLIBCXX_HAVE_STRXFRM_L */ 919 920 /* Define to 1 if the target runtime linker supports binding the same symbol 921 to different versions. */ 922 /* #undef _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT */ 923 924 /* Define to 1 if you have the <sys/filio.h> header file. */ 925 #define _GLIBCXX_HAVE_SYS_FILIO_H 1 926 927 /* Define to 1 if you have the <sys/ioctl.h> header file. */ 928 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 929 930 /* Define to 1 if you have the <sys/ipc.h> header file. */ 931 #define _GLIBCXX_HAVE_SYS_IPC_H 1 932 933 /* Define to 1 if you have the <sys/isa_defs.h> header file. */ 934 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ 935 936 /* Define to 1 if you have the <sys/machine.h> header file. */ 937 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ 938 939 /* Define to 1 if you have the <sys/param.h> header file. */ 940 #define _GLIBCXX_HAVE_SYS_PARAM_H 1 941 942 /* Define to 1 if you have the <sys/resource.h> header file. */ 943 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 944 945 /* Define to 1 if you have a suitable <sys/sdt.h> header file */ 946 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */ 947 948 /* Define to 1 if you have the <sys/sem.h> header file. */ 949 #define _GLIBCXX_HAVE_SYS_SEM_H 1 950 951 /* Define to 1 if you have the <sys/statvfs.h> header file. */ 952 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1 953 954 /* Define to 1 if you have the <sys/stat.h> header file. */ 955 #define _GLIBCXX_HAVE_SYS_STAT_H 1 956 957 /* Define to 1 if you have the <sys/sysinfo.h> header file. */ 958 /* #undef _GLIBCXX_HAVE_SYS_SYSINFO_H */ 959 960 /* Define to 1 if you have the <sys/time.h> header file. */ 961 #define _GLIBCXX_HAVE_SYS_TIME_H 1 962 963 /* Define to 1 if you have the <sys/types.h> header file. */ 964 #define _GLIBCXX_HAVE_SYS_TYPES_H 1 965 966 /* Define to 1 if you have the <sys/uio.h> header file. */ 967 #define _GLIBCXX_HAVE_SYS_UIO_H 1 968 969 /* Define if S_IFREG is available in <sys/stat.h>. */ 970 /* #undef _GLIBCXX_HAVE_S_IFREG */ 971 972 /* Define if S_IFREG is available in <sys/stat.h>. */ 973 #define _GLIBCXX_HAVE_S_ISREG 1 974 975 /* Define to 1 if you have the `tanf' function. */ 976 #define _GLIBCXX_HAVE_TANF 1 977 978 /* Define to 1 if you have the `tanhf' function. */ 979 #define _GLIBCXX_HAVE_TANHF 1 980 981 /* Define to 1 if you have the `tanhl' function. */ 982 #define _GLIBCXX_HAVE_TANHL 1 983 984 /* Define to 1 if you have the `tanl' function. */ 985 #define _GLIBCXX_HAVE_TANL 1 986 987 /* Define to 1 if you have the <tgmath.h> header file. */ 988 #define _GLIBCXX_HAVE_TGMATH_H 1 989 990 /* Define to 1 if the target supports thread-local storage. */ 991 #define _GLIBCXX_HAVE_TLS 1 992 993 /* Define to 1 if you have the <unistd.h> header file. */ 994 #define _GLIBCXX_HAVE_UNISTD_H 1 995 996 /* Defined if usleep exists. */ 997 /* #undef _GLIBCXX_HAVE_USLEEP */ 998 999 /* Define to 1 if you have the <utime.h> header file. */ 1000 #define _GLIBCXX_HAVE_UTIME_H 1 1001 1002 /* Defined if vfwscanf exists. */ 1003 #define _GLIBCXX_HAVE_VFWSCANF 1 1004 1005 /* Defined if vswscanf exists. */ 1006 #define _GLIBCXX_HAVE_VSWSCANF 1 1007 1008 /* Defined if vwscanf exists. */ 1009 #define _GLIBCXX_HAVE_VWSCANF 1 1010 1011 /* Define to 1 if you have the <wchar.h> header file. */ 1012 #define _GLIBCXX_HAVE_WCHAR_H 1 1013 1014 /* Defined if wcstof exists. */ 1015 #define _GLIBCXX_HAVE_WCSTOF 1 1016 1017 /* Define to 1 if you have the <wctype.h> header file. */ 1018 #define _GLIBCXX_HAVE_WCTYPE_H 1 1019 1020 /* Defined if Sleep exists. */ 1021 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */ 1022 1023 /* Define if writev is available in <sys/uio.h>. */ 1024 #define _GLIBCXX_HAVE_WRITEV 1 1025 1026 /* Define to 1 if you have the `_acosf' function. */ 1027 /* #undef _GLIBCXX_HAVE__ACOSF */ 1028 1029 /* Define to 1 if you have the `_acosl' function. */ 1030 /* #undef _GLIBCXX_HAVE__ACOSL */ 1031 1032 /* Define to 1 if you have the `_asinf' function. */ 1033 /* #undef _GLIBCXX_HAVE__ASINF */ 1034 1035 /* Define to 1 if you have the `_asinl' function. */ 1036 /* #undef _GLIBCXX_HAVE__ASINL */ 1037 1038 /* Define to 1 if you have the `_atan2f' function. */ 1039 /* #undef _GLIBCXX_HAVE__ATAN2F */ 1040 1041 /* Define to 1 if you have the `_atan2l' function. */ 1042 /* #undef _GLIBCXX_HAVE__ATAN2L */ 1043 1044 /* Define to 1 if you have the `_atanf' function. */ 1045 /* #undef _GLIBCXX_HAVE__ATANF */ 1046 1047 /* Define to 1 if you have the `_atanl' function. */ 1048 /* #undef _GLIBCXX_HAVE__ATANL */ 1049 1050 /* Define to 1 if you have the `_ceilf' function. */ 1051 /* #undef _GLIBCXX_HAVE__CEILF */ 1052 1053 /* Define to 1 if you have the `_ceill' function. */ 1054 /* #undef _GLIBCXX_HAVE__CEILL */ 1055 1056 /* Define to 1 if you have the `_cosf' function. */ 1057 /* #undef _GLIBCXX_HAVE__COSF */ 1058 1059 /* Define to 1 if you have the `_coshf' function. */ 1060 /* #undef _GLIBCXX_HAVE__COSHF */ 1061 1062 /* Define to 1 if you have the `_coshl' function. */ 1063 /* #undef _GLIBCXX_HAVE__COSHL */ 1064 1065 /* Define to 1 if you have the `_cosl' function. */ 1066 /* #undef _GLIBCXX_HAVE__COSL */ 1067 1068 /* Define to 1 if you have the `_expf' function. */ 1069 /* #undef _GLIBCXX_HAVE__EXPF */ 1070 1071 /* Define to 1 if you have the `_expl' function. */ 1072 /* #undef _GLIBCXX_HAVE__EXPL */ 1073 1074 /* Define to 1 if you have the `_fabsf' function. */ 1075 /* #undef _GLIBCXX_HAVE__FABSF */ 1076 1077 /* Define to 1 if you have the `_fabsl' function. */ 1078 /* #undef _GLIBCXX_HAVE__FABSL */ 1079 1080 /* Define to 1 if you have the `_finite' function. */ 1081 /* #undef _GLIBCXX_HAVE__FINITE */ 1082 1083 /* Define to 1 if you have the `_finitef' function. */ 1084 /* #undef _GLIBCXX_HAVE__FINITEF */ 1085 1086 /* Define to 1 if you have the `_finitel' function. */ 1087 /* #undef _GLIBCXX_HAVE__FINITEL */ 1088 1089 /* Define to 1 if you have the `_floorf' function. */ 1090 /* #undef _GLIBCXX_HAVE__FLOORF */ 1091 1092 /* Define to 1 if you have the `_floorl' function. */ 1093 /* #undef _GLIBCXX_HAVE__FLOORL */ 1094 1095 /* Define to 1 if you have the `_fmodf' function. */ 1096 /* #undef _GLIBCXX_HAVE__FMODF */ 1097 1098 /* Define to 1 if you have the `_fmodl' function. */ 1099 /* #undef _GLIBCXX_HAVE__FMODL */ 1100 1101 /* Define to 1 if you have the `_fpclass' function. */ 1102 /* #undef _GLIBCXX_HAVE__FPCLASS */ 1103 1104 /* Define to 1 if you have the `_frexpf' function. */ 1105 /* #undef _GLIBCXX_HAVE__FREXPF */ 1106 1107 /* Define to 1 if you have the `_frexpl' function. */ 1108 /* #undef _GLIBCXX_HAVE__FREXPL */ 1109 1110 /* Define to 1 if you have the `_hypot' function. */ 1111 /* #undef _GLIBCXX_HAVE__HYPOT */ 1112 1113 /* Define to 1 if you have the `_hypotf' function. */ 1114 /* #undef _GLIBCXX_HAVE__HYPOTF */ 1115 1116 /* Define to 1 if you have the `_hypotl' function. */ 1117 /* #undef _GLIBCXX_HAVE__HYPOTL */ 1118 1119 /* Define to 1 if you have the `_isinf' function. */ 1120 /* #undef _GLIBCXX_HAVE__ISINF */ 1121 1122 /* Define to 1 if you have the `_isinff' function. */ 1123 /* #undef _GLIBCXX_HAVE__ISINFF */ 1124 1125 /* Define to 1 if you have the `_isinfl' function. */ 1126 /* #undef _GLIBCXX_HAVE__ISINFL */ 1127 1128 /* Define to 1 if you have the `_isnan' function. */ 1129 /* #undef _GLIBCXX_HAVE__ISNAN */ 1130 1131 /* Define to 1 if you have the `_isnanf' function. */ 1132 /* #undef _GLIBCXX_HAVE__ISNANF */ 1133 1134 /* Define to 1 if you have the `_isnanl' function. */ 1135 /* #undef _GLIBCXX_HAVE__ISNANL */ 1136 1137 /* Define to 1 if you have the `_ldexpf' function. */ 1138 /* #undef _GLIBCXX_HAVE__LDEXPF */ 1139 1140 /* Define to 1 if you have the `_ldexpl' function. */ 1141 /* #undef _GLIBCXX_HAVE__LDEXPL */ 1142 1143 /* Define to 1 if you have the `_log10f' function. */ 1144 /* #undef _GLIBCXX_HAVE__LOG10F */ 1145 1146 /* Define to 1 if you have the `_log10l' function. */ 1147 /* #undef _GLIBCXX_HAVE__LOG10L */ 1148 1149 /* Define to 1 if you have the `_logf' function. */ 1150 /* #undef _GLIBCXX_HAVE__LOGF */ 1151 1152 /* Define to 1 if you have the `_logl' function. */ 1153 /* #undef _GLIBCXX_HAVE__LOGL */ 1154 1155 /* Define to 1 if you have the `_modf' function. */ 1156 /* #undef _GLIBCXX_HAVE__MODF */ 1157 1158 /* Define to 1 if you have the `_modff' function. */ 1159 /* #undef _GLIBCXX_HAVE__MODFF */ 1160 1161 /* Define to 1 if you have the `_modfl' function. */ 1162 /* #undef _GLIBCXX_HAVE__MODFL */ 1163 1164 /* Define to 1 if you have the `_powf' function. */ 1165 /* #undef _GLIBCXX_HAVE__POWF */ 1166 1167 /* Define to 1 if you have the `_powl' function. */ 1168 /* #undef _GLIBCXX_HAVE__POWL */ 1169 1170 /* Define to 1 if you have the `_qfpclass' function. */ 1171 /* #undef _GLIBCXX_HAVE__QFPCLASS */ 1172 1173 /* Define to 1 if you have the `_sincos' function. */ 1174 /* #undef _GLIBCXX_HAVE__SINCOS */ 1175 1176 /* Define to 1 if you have the `_sincosf' function. */ 1177 /* #undef _GLIBCXX_HAVE__SINCOSF */ 1178 1179 /* Define to 1 if you have the `_sincosl' function. */ 1180 /* #undef _GLIBCXX_HAVE__SINCOSL */ 1181 1182 /* Define to 1 if you have the `_sinf' function. */ 1183 /* #undef _GLIBCXX_HAVE__SINF */ 1184 1185 /* Define to 1 if you have the `_sinhf' function. */ 1186 /* #undef _GLIBCXX_HAVE__SINHF */ 1187 1188 /* Define to 1 if you have the `_sinhl' function. */ 1189 /* #undef _GLIBCXX_HAVE__SINHL */ 1190 1191 /* Define to 1 if you have the `_sinl' function. */ 1192 /* #undef _GLIBCXX_HAVE__SINL */ 1193 1194 /* Define to 1 if you have the `_sqrtf' function. */ 1195 /* #undef _GLIBCXX_HAVE__SQRTF */ 1196 1197 /* Define to 1 if you have the `_sqrtl' function. */ 1198 /* #undef _GLIBCXX_HAVE__SQRTL */ 1199 1200 /* Define to 1 if you have the `_tanf' function. */ 1201 /* #undef _GLIBCXX_HAVE__TANF */ 1202 1203 /* Define to 1 if you have the `_tanhf' function. */ 1204 /* #undef _GLIBCXX_HAVE__TANHF */ 1205 1206 /* Define to 1 if you have the `_tanhl' function. */ 1207 /* #undef _GLIBCXX_HAVE__TANHL */ 1208 1209 /* Define to 1 if you have the `_tanl' function. */ 1210 /* #undef _GLIBCXX_HAVE__TANL */ 1211 1212 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */ 1213 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1 1214 1215 /* Define as const if the declaration of iconv() needs const. */ 1216 #define _GLIBCXX_ICONV_CONST const 1217 1218 /* Define to the sub-directory in which libtool stores uninstalled libraries. 1219 */ 1220 #define LT_OBJDIR ".libs/" 1221 1222 /* Name of package */ 1223 /* #undef _GLIBCXX_PACKAGE */ 1224 1225 /* Define to the address where bug reports for this package should be sent. */ 1226 #define _GLIBCXX_PACKAGE_BUGREPORT "" 1227 1228 /* Define to the full name of this package. */ 1229 #define _GLIBCXX_PACKAGE_NAME "package-unused" 1230 1231 /* Define to the full name and version of this package. */ 1232 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" 1233 1234 /* Define to the one symbol short name of this package. */ 1235 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" 1236 1237 /* Define to the home page for this package. */ 1238 #define _GLIBCXX_PACKAGE_URL "" 1239 1240 /* Define to the version of this package. */ 1241 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" 1242 1243 /* The size of `char', as computed by sizeof. */ 1244 /* #undef SIZEOF_CHAR */ 1245 1246 /* The size of `int', as computed by sizeof. */ 1247 /* #undef SIZEOF_INT */ 1248 1249 /* The size of `long', as computed by sizeof. */ 1250 /* #undef SIZEOF_LONG */ 1251 1252 /* The size of `short', as computed by sizeof. */ 1253 /* #undef SIZEOF_SHORT */ 1254 1255 /* The size of `void *', as computed by sizeof. */ 1256 /* #undef SIZEOF_VOID_P */ 1257 1258 /* Define to 1 if you have the ANSI C header files. */ 1259 #define STDC_HEADERS 1 1260 1261 /* Version number of package */ 1262 /* #undef _GLIBCXX_VERSION */ 1263 1264 /* Define if the compiler supports C++11 atomics. */ 1265 #define _GLIBCXX_ATOMIC_BUILTINS 1 1266 1267 /* Define to use concept checking code from the boost libraries. */ 1268 /* #undef _GLIBCXX_CONCEPT_CHECKS */ 1269 1270 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable, 1271 undefined for platform defaults */ 1272 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0 1273 1274 /* Define if gthreads library is available. */ 1275 #define _GLIBCXX_HAS_GTHREADS 1 1276 1277 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ 1278 #define _GLIBCXX_HOSTED 1 1279 1280 /* Define if compatibility should be provided for -mlong-double-64. */ 1281 1282 /* Define if ptrdiff_t is int. */ 1283 #define _GLIBCXX_PTRDIFF_T_IS_INT 1 1284 1285 /* Define if using setrlimit to set resource limits during "make check" */ 1286 #define _GLIBCXX_RES_LIMITS 1 1287 1288 /* Define if size_t is unsigned int. */ 1289 #define _GLIBCXX_SIZE_T_IS_UINT 1 1290 1291 /* Define if the compiler is configured for setjmp/longjmp exceptions. */ 1292 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */ 1293 1294 /* Define to the value of the EOF integer constant. */ 1295 #define _GLIBCXX_STDIO_EOF -1 1296 1297 /* Define to the value of the SEEK_CUR integer constant. */ 1298 #define _GLIBCXX_STDIO_SEEK_CUR 1 1299 1300 /* Define to the value of the SEEK_END integer constant. */ 1301 #define _GLIBCXX_STDIO_SEEK_END 2 1302 1303 /* Define to use symbol versioning in the shared library. */ 1304 /* #undef _GLIBCXX_SYMVER */ 1305 1306 /* Define to use darwin versioning in the shared library. */ 1307 /* #undef _GLIBCXX_SYMVER_DARWIN */ 1308 1309 /* Define to use GNU versioning in the shared library. */ 1310 /* #undef _GLIBCXX_SYMVER_GNU */ 1311 1312 /* Define to use GNU namespace versioning in the shared library. */ 1313 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */ 1314 1315 /* Define to use Sun versioning in the shared library. */ 1316 /* #undef _GLIBCXX_SYMVER_SUN */ 1317 1318 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>, 1319 <stdio.h>, and <stdlib.h> can be used or exposed. */ 1320 #define _GLIBCXX_USE_C99 1 1321 1322 /* Define if C99 functions in <complex.h> should be used in <complex>. Using 1323 compiler builtins for these functions requires corresponding C99 library 1324 functions to be present. */ 1325 #define _GLIBCXX_USE_C99_COMPLEX 1 1326 1327 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>. 1328 Using compiler builtins for these functions requires corresponding C99 1329 library functions to be present. */ 1330 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1 1331 1332 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in 1333 namespace std::tr1. */ 1334 #define _GLIBCXX_USE_C99_CTYPE_TR1 1 1335 1336 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in 1337 namespace std::tr1. */ 1338 #define _GLIBCXX_USE_C99_FENV_TR1 1 1339 1340 /* Define if C99 functions in <inttypes.h> should be imported in 1341 <tr1/cinttypes> in namespace std::tr1. */ 1342 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1 1343 1344 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in 1345 <tr1/cinttypes> in namespace std::tr1. */ 1346 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1 1347 1348 /* Define if C99 functions or macros in <math.h> should be imported in <cmath> 1349 in namespace std. */ 1350 #define _GLIBCXX_USE_C99_MATH 1 1351 1352 /* Define if C99 functions or macros in <math.h> should be imported in 1353 <tr1/cmath> in namespace std::tr1. */ 1354 #define _GLIBCXX_USE_C99_MATH_TR1 1 1355 1356 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in 1357 namespace std::tr1. */ 1358 #define _GLIBCXX_USE_C99_STDINT_TR1 1 1359 1360 /* Defined if clock_gettime syscall has monotonic and realtime clock support. 1361 */ 1362 /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */ 1363 1364 /* Defined if clock_gettime has monotonic clock support. */ 1365 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1 1366 1367 /* Defined if clock_gettime has realtime clock support. */ 1368 #define _GLIBCXX_USE_CLOCK_REALTIME 1 1369 1370 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on 1371 this host. */ 1372 /* #undef _GLIBCXX_USE_DECIMAL_FLOAT */ 1373 1374 /* Define if fchmod is available in <sys/stat.h>. */ 1375 #define _GLIBCXX_USE_FCHMOD 1 1376 1377 /* Define if fchmodat is available in <sys/stat.h>. */ 1378 #define _GLIBCXX_USE_FCHMODAT 1 1379 1380 /* Define if __float128 is supported on this host. */ 1381 /* #undef _GLIBCXX_USE_FLOAT128 */ 1382 1383 /* Defined if gettimeofday is available. */ 1384 #define _GLIBCXX_USE_GETTIMEOFDAY 1 1385 1386 /* Define if get_nprocs is available in <sys/sysinfo.h>. */ 1387 /* #undef _GLIBCXX_USE_GET_NPROCS */ 1388 1389 /* Define if __int128 is supported on this host. */ 1390 /* #undef _GLIBCXX_USE_INT128 */ 1391 1392 /* Define if LFS support is available. */ 1393 /* #undef _GLIBCXX_USE_LFS */ 1394 1395 /* Define if code specialized for long long should be used. */ 1396 #define _GLIBCXX_USE_LONG_LONG 1 1397 1398 /* Defined if nanosleep is available. */ 1399 #define _GLIBCXX_USE_NANOSLEEP 1 1400 1401 /* Define if NLS translations are to be used. */ 1402 /* #undef _GLIBCXX_USE_NLS */ 1403 1404 /* Define if pthreads_num_processors_np is available in <pthread.h>. */ 1405 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */ 1406 1407 /* Define if POSIX read/write locks are available in <gthr.h>. */ 1408 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1 1409 1410 /* Define if /dev/random and /dev/urandom are available for the random_device 1411 of TR1 (Chapter 5.1). */ 1412 #define _GLIBCXX_USE_RANDOM_TR1 1 1413 1414 /* Define if usable realpath is available in <stdlib.h>. */ 1415 /* #undef _GLIBCXX_USE_REALPATH */ 1416 1417 /* Defined if sched_yield is available. */ 1418 #define _GLIBCXX_USE_SCHED_YIELD 1 1419 1420 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */ 1421 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1 1422 1423 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */ 1424 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */ 1425 1426 /* Define if sendfile is available in <sys/sendfile.h>. */ 1427 /* #undef _GLIBCXX_USE_SENDFILE */ 1428 1429 /* Define if struct stat has timespec members. */ 1430 #define _GLIBCXX_USE_ST_MTIM 1 1431 1432 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */ 1433 #define _GLIBCXX_USE_SYSCTL_HW_NCPU 1 1434 1435 /* Define if obsolescent tmpnam is available in <stdio.h>. */ 1436 #define _GLIBCXX_USE_TMPNAM 1 1437 1438 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and 1439 AT_FDCWD in <fcntl.h>. */ 1440 #define _GLIBCXX_USE_UTIMENSAT 1 1441 1442 /* Define if code specialized for wchar_t should be used. */ 1443 #define _GLIBCXX_USE_WCHAR_T 1 1444 1445 /* Define to 1 if a verbose library is built, or 0 otherwise. */ 1446 #define _GLIBCXX_VERBOSE 1 1447 1448 /* Defined if as can handle rdrand. */ 1449 /* #undef _GLIBCXX_X86_RDRAND */ 1450 1451 /* Define to 1 if mutex_timedlock is available. */ 1452 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 0 1453 1454 /* Define if all C++11 floating point overloads are available in <math.h>. */ 1455 #if __cplusplus >= 201103L 1456 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */ 1457 #endif 1458 1459 /* Define if all C++11 integral type overloads are available in <math.h>. */ 1460 #if __cplusplus >= 201103L 1461 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */ 1462 #endif 1463 1464 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) 1465 # define _GLIBCXX_HAVE_ACOSF 1 1466 # define acosf _acosf 1467 #endif 1468 1469 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) 1470 # define _GLIBCXX_HAVE_ACOSL 1 1471 # define acosl _acosl 1472 #endif 1473 1474 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) 1475 # define _GLIBCXX_HAVE_ASINF 1 1476 # define asinf _asinf 1477 #endif 1478 1479 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) 1480 # define _GLIBCXX_HAVE_ASINL 1 1481 # define asinl _asinl 1482 #endif 1483 1484 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F) 1485 # define _GLIBCXX_HAVE_ATAN2F 1 1486 # define atan2f _atan2f 1487 #endif 1488 1489 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L) 1490 # define _GLIBCXX_HAVE_ATAN2L 1 1491 # define atan2l _atan2l 1492 #endif 1493 1494 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) 1495 # define _GLIBCXX_HAVE_ATANF 1 1496 # define atanf _atanf 1497 #endif 1498 1499 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) 1500 # define _GLIBCXX_HAVE_ATANL 1 1501 # define atanl _atanl 1502 #endif 1503 1504 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) 1505 # define _GLIBCXX_HAVE_CEILF 1 1506 # define ceilf _ceilf 1507 #endif 1508 1509 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) 1510 # define _GLIBCXX_HAVE_CEILL 1 1511 # define ceill _ceill 1512 #endif 1513 1514 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) 1515 # define _GLIBCXX_HAVE_COSF 1 1516 # define cosf _cosf 1517 #endif 1518 1519 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) 1520 # define _GLIBCXX_HAVE_COSHF 1 1521 # define coshf _coshf 1522 #endif 1523 1524 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) 1525 # define _GLIBCXX_HAVE_COSHL 1 1526 # define coshl _coshl 1527 #endif 1528 1529 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) 1530 # define _GLIBCXX_HAVE_COSL 1 1531 # define cosl _cosl 1532 #endif 1533 1534 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) 1535 # define _GLIBCXX_HAVE_EXPF 1 1536 # define expf _expf 1537 #endif 1538 1539 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) 1540 # define _GLIBCXX_HAVE_EXPL 1 1541 # define expl _expl 1542 #endif 1543 1544 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) 1545 # define _GLIBCXX_HAVE_FABSF 1 1546 # define fabsf _fabsf 1547 #endif 1548 1549 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) 1550 # define _GLIBCXX_HAVE_FABSL 1 1551 # define fabsl _fabsl 1552 #endif 1553 1554 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) 1555 # define _GLIBCXX_HAVE_FINITE 1 1556 # define finite _finite 1557 #endif 1558 1559 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) 1560 # define _GLIBCXX_HAVE_FINITEF 1 1561 # define finitef _finitef 1562 #endif 1563 1564 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) 1565 # define _GLIBCXX_HAVE_FINITEL 1 1566 # define finitel _finitel 1567 #endif 1568 1569 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) 1570 # define _GLIBCXX_HAVE_FLOORF 1 1571 # define floorf _floorf 1572 #endif 1573 1574 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) 1575 # define _GLIBCXX_HAVE_FLOORL 1 1576 # define floorl _floorl 1577 #endif 1578 1579 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) 1580 # define _GLIBCXX_HAVE_FMODF 1 1581 # define fmodf _fmodf 1582 #endif 1583 1584 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) 1585 # define _GLIBCXX_HAVE_FMODL 1 1586 # define fmodl _fmodl 1587 #endif 1588 1589 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) 1590 # define _GLIBCXX_HAVE_FPCLASS 1 1591 # define fpclass _fpclass 1592 #endif 1593 1594 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) 1595 # define _GLIBCXX_HAVE_FREXPF 1 1596 # define frexpf _frexpf 1597 #endif 1598 1599 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) 1600 # define _GLIBCXX_HAVE_FREXPL 1 1601 # define frexpl _frexpl 1602 #endif 1603 1604 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT) 1605 # define _GLIBCXX_HAVE_HYPOT 1 1606 # define hypot _hypot 1607 #endif 1608 1609 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF) 1610 # define _GLIBCXX_HAVE_HYPOTF 1 1611 # define hypotf _hypotf 1612 #endif 1613 1614 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL) 1615 # define _GLIBCXX_HAVE_HYPOTL 1 1616 # define hypotl _hypotl 1617 #endif 1618 1619 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) 1620 # define _GLIBCXX_HAVE_ISINF 1 1621 # define isinf _isinf 1622 #endif 1623 1624 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) 1625 # define _GLIBCXX_HAVE_ISINFF 1 1626 # define isinff _isinff 1627 #endif 1628 1629 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) 1630 # define _GLIBCXX_HAVE_ISINFL 1 1631 # define isinfl _isinfl 1632 #endif 1633 1634 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) 1635 # define _GLIBCXX_HAVE_ISNAN 1 1636 # define isnan _isnan 1637 #endif 1638 1639 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) 1640 # define _GLIBCXX_HAVE_ISNANF 1 1641 # define isnanf _isnanf 1642 #endif 1643 1644 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) 1645 # define _GLIBCXX_HAVE_ISNANL 1 1646 # define isnanl _isnanl 1647 #endif 1648 1649 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) 1650 # define _GLIBCXX_HAVE_LDEXPF 1 1651 # define ldexpf _ldexpf 1652 #endif 1653 1654 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) 1655 # define _GLIBCXX_HAVE_LDEXPL 1 1656 # define ldexpl _ldexpl 1657 #endif 1658 1659 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) 1660 # define _GLIBCXX_HAVE_LOG10F 1 1661 # define log10f _log10f 1662 #endif 1663 1664 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) 1665 # define _GLIBCXX_HAVE_LOG10L 1 1666 # define log10l _log10l 1667 #endif 1668 1669 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) 1670 # define _GLIBCXX_HAVE_LOGF 1 1671 # define logf _logf 1672 #endif 1673 1674 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) 1675 # define _GLIBCXX_HAVE_LOGL 1 1676 # define logl _logl 1677 #endif 1678 1679 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) 1680 # define _GLIBCXX_HAVE_MODF 1 1681 # define modf _modf 1682 #endif 1683 1684 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF) 1685 # define _GLIBCXX_HAVE_MODFF 1 1686 # define modff _modff 1687 #endif 1688 1689 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL) 1690 # define _GLIBCXX_HAVE_MODFL 1 1691 # define modfl _modfl 1692 #endif 1693 1694 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) 1695 # define _GLIBCXX_HAVE_POWF 1 1696 # define powf _powf 1697 #endif 1698 1699 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) 1700 # define _GLIBCXX_HAVE_POWL 1 1701 # define powl _powl 1702 #endif 1703 1704 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) 1705 # define _GLIBCXX_HAVE_QFPCLASS 1 1706 # define qfpclass _qfpclass 1707 #endif 1708 1709 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) 1710 # define _GLIBCXX_HAVE_SINCOS 1 1711 # define sincos _sincos 1712 #endif 1713 1714 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) 1715 # define _GLIBCXX_HAVE_SINCOSF 1 1716 # define sincosf _sincosf 1717 #endif 1718 1719 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) 1720 # define _GLIBCXX_HAVE_SINCOSL 1 1721 # define sincosl _sincosl 1722 #endif 1723 1724 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) 1725 # define _GLIBCXX_HAVE_SINF 1 1726 # define sinf _sinf 1727 #endif 1728 1729 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) 1730 # define _GLIBCXX_HAVE_SINHF 1 1731 # define sinhf _sinhf 1732 #endif 1733 1734 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) 1735 # define _GLIBCXX_HAVE_SINHL 1 1736 # define sinhl _sinhl 1737 #endif 1738 1739 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) 1740 # define _GLIBCXX_HAVE_SINL 1 1741 # define sinl _sinl 1742 #endif 1743 1744 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) 1745 # define _GLIBCXX_HAVE_SQRTF 1 1746 # define sqrtf _sqrtf 1747 #endif 1748 1749 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) 1750 # define _GLIBCXX_HAVE_SQRTL 1 1751 # define sqrtl _sqrtl 1752 #endif 1753 1754 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) 1755 # define _GLIBCXX_HAVE_STRTOF 1 1756 # define strtof _strtof 1757 #endif 1758 1759 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) 1760 # define _GLIBCXX_HAVE_STRTOLD 1 1761 # define strtold _strtold 1762 #endif 1763 1764 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) 1765 # define _GLIBCXX_HAVE_TANF 1 1766 # define tanf _tanf 1767 #endif 1768 1769 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) 1770 # define _GLIBCXX_HAVE_TANHF 1 1771 # define tanhf _tanhf 1772 #endif 1773 1774 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) 1775 # define _GLIBCXX_HAVE_TANHL 1 1776 # define tanhl _tanhl 1777 #endif 1778 1779 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) 1780 # define _GLIBCXX_HAVE_TANL 1 1781 # define tanl _tanl 1782 #endif 1783 1784 #endif // _GLIBCXX_CXX_CONFIG_H 1785