30 #ifndef _GLIBCXX_CXX_CONFIG_H 31 #define _GLIBCXX_CXX_CONFIG_H 1 34 #define _GLIBCXX_RELEASE 9 37 #define __GLIBCXX__ 20190402 46 # define _GLIBCXX_PURE __attribute__ ((__pure__)) 49 #ifndef _GLIBCXX_CONST 50 # define _GLIBCXX_CONST __attribute__ ((__const__)) 53 #ifndef _GLIBCXX_NORETURN 54 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__)) 58 #ifndef _GLIBCXX_NOTHROW 60 # define _GLIBCXX_NOTHROW __attribute__((__nothrow__)) 67 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1 69 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 70 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V))) 74 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V) 81 #ifndef _GLIBCXX_USE_DEPRECATED 82 # define _GLIBCXX_USE_DEPRECATED 1 85 #if defined(__DEPRECATED) && (__cplusplus >= 201103L) 86 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__)) 88 # define _GLIBCXX_DEPRECATED 91 #if defined(__DEPRECATED) && (__cplusplus >= 201703L) 92 # define _GLIBCXX17_DEPRECATED [[__deprecated__]] 94 # define _GLIBCXX17_DEPRECATED 98 #ifndef _GLIBCXX_ABI_TAG_CXX11 99 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11"))) 103 #if __cplusplus >= 201703L 104 # define _GLIBCXX_NODISCARD [[__nodiscard__]] 106 # define _GLIBCXX_NODISCARD 114 #ifndef _GLIBCXX_CONSTEXPR 115 # if __cplusplus >= 201103L 116 # define _GLIBCXX_CONSTEXPR constexpr 117 # define _GLIBCXX_USE_CONSTEXPR constexpr 119 # define _GLIBCXX_CONSTEXPR 120 # define _GLIBCXX_USE_CONSTEXPR const 124 #ifndef _GLIBCXX14_CONSTEXPR 125 # if __cplusplus >= 201402L 126 # define _GLIBCXX14_CONSTEXPR constexpr 128 # define _GLIBCXX14_CONSTEXPR 132 #ifndef _GLIBCXX17_CONSTEXPR 133 # if __cplusplus >= 201703L 134 # define _GLIBCXX17_CONSTEXPR constexpr 136 # define _GLIBCXX17_CONSTEXPR 140 #ifndef _GLIBCXX20_CONSTEXPR 141 # if __cplusplus > 201703L 142 # define _GLIBCXX20_CONSTEXPR constexpr 144 # define _GLIBCXX20_CONSTEXPR 148 #ifndef _GLIBCXX17_INLINE 149 # if __cplusplus >= 201703L 150 # define _GLIBCXX17_INLINE inline 152 # define _GLIBCXX17_INLINE 157 #ifndef _GLIBCXX_NOEXCEPT 158 # if __cplusplus >= 201103L 159 # define _GLIBCXX_NOEXCEPT noexcept 160 # define _GLIBCXX_NOEXCEPT_IF(_COND) noexcept(_COND) 161 # define _GLIBCXX_USE_NOEXCEPT noexcept 162 # define _GLIBCXX_THROW(_EXC) 164 # define _GLIBCXX_NOEXCEPT 165 # define _GLIBCXX_NOEXCEPT_IF(_COND) 166 # define _GLIBCXX_USE_NOEXCEPT throw() 167 # define _GLIBCXX_THROW(_EXC) throw(_EXC) 171 #ifndef _GLIBCXX_NOTHROW 172 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT 175 #ifndef _GLIBCXX_THROW_OR_ABORT 176 # if __cpp_exceptions 177 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC)) 179 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort()) 183 #if __cpp_noexcept_function_type 184 #define _GLIBCXX_NOEXCEPT_PARM , bool _NE 185 #define _GLIBCXX_NOEXCEPT_QUAL noexcept (_NE) 187 #define _GLIBCXX_NOEXCEPT_PARM 188 #define _GLIBCXX_NOEXCEPT_QUAL 201 # define _GLIBCXX_EXTERN_TEMPLATE 1 254 typedef __SIZE_TYPE__ size_t;
255 typedef __PTRDIFF_TYPE__ ptrdiff_t;
257 #if __cplusplus >= 201103L 258 typedef decltype(
nullptr) nullptr_t;
262 # define _GLIBCXX_USE_DUAL_ABI 1 264 #if ! _GLIBCXX_USE_DUAL_ABI 266 # undef _GLIBCXX_USE_CXX11_ABI 269 #ifndef _GLIBCXX_USE_CXX11_ABI 270 # define _GLIBCXX_USE_CXX11_ABI 1 273 #if _GLIBCXX_USE_CXX11_ABI 276 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
280 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
282 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11:: 283 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 { 284 # define _GLIBCXX_END_NAMESPACE_CXX11 } 285 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11 287 # define _GLIBCXX_NAMESPACE_CXX11 288 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 289 # define _GLIBCXX_END_NAMESPACE_CXX11 290 # define _GLIBCXX_DEFAULT_ABI_TAG 294 # define _GLIBCXX_INLINE_VERSION 0 297 #if _GLIBCXX_INLINE_VERSION 298 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __8 { 299 # define _GLIBCXX_END_NAMESPACE_VERSION } 303 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
304 #if __cplusplus >= 201402L 305 inline namespace literals {
306 inline namespace chrono_literals { }
307 inline namespace complex_literals { }
308 inline namespace string_literals { }
309 #if __cplusplus > 201402L 310 inline namespace string_view_literals { }
314 _GLIBCXX_END_NAMESPACE_VERSION
319 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
320 _GLIBCXX_END_NAMESPACE_VERSION
324 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION 325 # define _GLIBCXX_END_NAMESPACE_VERSION 329 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \ 330 || defined(_GLIBCXX_PROFILE) 333 _GLIBCXX_BEGIN_NAMESPACE_VERSION
338 # if _GLIBCXX_USE_CXX11_ABI 339 inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
343 _GLIBCXX_END_NAMESPACE_VERSION
346 # ifdef _GLIBCXX_DEBUG 347 inline namespace __debug { }
351 # ifdef _GLIBCXX_PARALLEL 352 inline namespace __parallel { }
356 # ifdef _GLIBCXX_PROFILE 357 inline namespace __profile { }
362 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL) 363 # error illegal use of multiple inlined namespaces 365 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG) 366 # error illegal use of multiple inlined namespaces 368 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL) 369 # error illegal use of multiple inlined namespaces 373 # if __NO_INLINE__ && !__GXX_WEAK__ 374 # warning currently using inlined namespace mode which may fail \ 375 without inlining due to lack of weak symbols 389 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE) 390 # define _GLIBCXX_STD_C __cxx1998 391 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \ 392 namespace _GLIBCXX_STD_C { 393 # define _GLIBCXX_END_NAMESPACE_CONTAINER } 395 # define _GLIBCXX_STD_C std 396 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 397 # define _GLIBCXX_END_NAMESPACE_CONTAINER 400 #ifdef _GLIBCXX_PARALLEL 401 # define _GLIBCXX_STD_A __cxx1998 402 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \ 403 namespace _GLIBCXX_STD_A { 404 # define _GLIBCXX_END_NAMESPACE_ALGO } 406 # define _GLIBCXX_STD_A std 407 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO 408 # define _GLIBCXX_END_NAMESPACE_ALGO 413 #undef _GLIBCXX_LONG_DOUBLE_COMPAT 416 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__ 419 inline namespace __gnu_cxx_ldbl128 { }
421 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128:: 422 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 { 423 # define _GLIBCXX_END_NAMESPACE_LDBL } 425 # define _GLIBCXX_NAMESPACE_LDBL 426 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL 427 # define _GLIBCXX_END_NAMESPACE_LDBL 429 #if _GLIBCXX_USE_CXX11_ABI 430 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11 431 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11 432 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11 434 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL 435 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL 436 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL 440 #if defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_ASSERTIONS) 441 # define _GLIBCXX_ASSERTIONS 1 445 #ifdef _GLIBCXX_ASSERTIONS 446 # undef _GLIBCXX_EXTERN_TEMPLATE 447 # define _GLIBCXX_EXTERN_TEMPLATE -1 451 #if defined(_GLIBCXX_ASSERTIONS) \ 452 || defined(_GLIBCXX_PARALLEL) || defined(_GLIBCXX_PARALLEL_ASSERTIONS) 457 extern "C++" inline void 458 __replacement_assert(
const char* __file,
int __line,
459 const char* __function,
const char* __condition)
461 __builtin_printf(
"%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
462 __function, __condition);
466 #define __glibcxx_assert_impl(_Condition) \ 469 if (! (_Condition)) \ 470 std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \ 475 #if defined(_GLIBCXX_ASSERTIONS) 476 # define __glibcxx_assert(_Condition) __glibcxx_assert_impl(_Condition) 478 # define __glibcxx_assert(_Condition) 502 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE 503 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) 505 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER 506 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) 510 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" { 511 # define _GLIBCXX_END_EXTERN_C } 513 # define _GLIBCXX_USE_ALLOCATOR_NEW 1 515 #else // !__cplusplus 516 # define _GLIBCXX_BEGIN_EXTERN_C 517 # define _GLIBCXX_END_EXTERN_C 531 #ifndef _GLIBCXX_PSEUDO_VISIBILITY 532 # define _GLIBCXX_PSEUDO_VISIBILITY(V) 538 #ifndef _GLIBCXX_WEAK_DEFINITION 539 # define _GLIBCXX_WEAK_DEFINITION 546 #ifndef _GLIBCXX_USE_WEAK_REF 547 # define _GLIBCXX_USE_WEAK_REF __GXX_WEAK__ 553 #if __cplusplus >= 201103L && _GLIBCXX_USE_CXX11_ABI \ 554 && _GLIBCXX_USE_DUAL_ABI && __cpp_transactional_memory >= 201500L \ 555 && !_GLIBCXX_FULLY_DYNAMIC_STRING && _GLIBCXX_USE_WEAK_REF \ 556 && _GLIBCXX_USE_ALLOCATOR_NEW 557 #define _GLIBCXX_TXN_SAFE transaction_safe 558 #define _GLIBCXX_TXN_SAFE_DYN transaction_safe_dynamic 560 #define _GLIBCXX_TXN_SAFE 561 #define _GLIBCXX_TXN_SAFE_DYN 564 #if __cplusplus > 201402L 566 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1 567 #elif __cplusplus >= 201103L && __STDCPP_WANT_MATH_SPEC_FUNCS__ != 0 569 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1 577 # define _GLIBCXX_FAST_MATH 1 579 # define _GLIBCXX_FAST_MATH 0 586 #define __N(msgid) (msgid) 594 #if __cplusplus >= 201103L 595 # ifndef _GLIBCXX_USE_C99_MATH 596 # define _GLIBCXX_USE_C99_MATH _GLIBCXX11_USE_C99_MATH 598 # ifndef _GLIBCXX_USE_C99_COMPLEX 599 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX11_USE_C99_COMPLEX 601 # ifndef _GLIBCXX_USE_C99_STDIO 602 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX11_USE_C99_STDIO 604 # ifndef _GLIBCXX_USE_C99_STDLIB 605 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX11_USE_C99_STDLIB 607 # ifndef _GLIBCXX_USE_C99_WCHAR 608 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX11_USE_C99_WCHAR 611 # ifndef _GLIBCXX_USE_C99_MATH 612 # define _GLIBCXX_USE_C99_MATH _GLIBCXX98_USE_C99_MATH 614 # ifndef _GLIBCXX_USE_C99_COMPLEX 615 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX98_USE_C99_COMPLEX 617 # ifndef _GLIBCXX_USE_C99_STDIO 618 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX98_USE_C99_STDIO 620 # ifndef _GLIBCXX_USE_C99_STDLIB 621 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX98_USE_C99_STDLIB 623 # ifndef _GLIBCXX_USE_C99_WCHAR 624 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX98_USE_C99_WCHAR 630 #ifndef _GLIBCXX_USE_CHAR8_T 631 # ifdef __cpp_char8_t 632 # define _GLIBCXX_USE_CHAR8_T 1 635 #ifdef _GLIBCXX_USE_CHAR8_T 636 # define __cpp_lib_char8_t 201811L 640 #if defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__) 641 #define _GLIBCXX_USE_FLOAT128 1 646 # define _GLIBCXX_HAVE_BUILTIN_HAS_UNIQ_OBJ_REP 1 647 # define _GLIBCXX_HAVE_BUILTIN_IS_AGGREGATE 1 648 # define _GLIBCXX_HAVE_BUILTIN_LAUNDER 1 650 # define _GLIBCXX_HAVE_BUILTIN_IS_CONSTANT_EVALUATED 1 652 #elif defined(__is_identifier) 654 # if ! __is_identifier(__has_unique_object_representations) 655 # define _GLIBCXX_HAVE_BUILTIN_HAS_UNIQ_OBJ_REP 1 657 # if ! __is_identifier(__is_aggregate) 658 # define _GLIBCXX_HAVE_BUILTIN_IS_AGGREGATE 1 660 # if ! __is_identifier(__builtin_launder) 661 # define _GLIBCXX_HAVE_BUILTIN_LAUNDER 1 663 # if ! __is_identifier(__builtin_is_constant_evaluated) 664 # define _GLIBCXX_HAVE_BUILTIN_IS_CONSTANT_EVALUATED 1 670 #if __cplusplus >= 201703L 677 # ifndef _GLIBCXX_USE_TBB_PAR_BACKEND 678 # define _GLIBCXX_USE_TBB_PAR_BACKEND __has_include(<tbb/tbb.h>) 681 # if _GLIBCXX_USE_TBB_PAR_BACKEND 682 # define __PSTL_USE_PAR_POLICIES 1 685 # if __PSTL_USE_PAR_POLICIES 686 # if !defined(__PSTL_PAR_BACKEND_TBB) 687 # define __PSTL_PAR_BACKEND_TBB 1 690 # undef __PSTL_PAR_BACKEND_TBB 693 # define __PSTL_PRAGMA(x) _Pragma (#x) 695 # define __PSTL_STRING_AUX(x) #x 696 # define __PSTL_STRING(x) __PSTL_STRING_AUX(x) 697 # define __PSTL_STRING_CONCAT(x, y) x#y 699 # define __PSTL_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + \ 703 # if (__PSTL_GCC_VERSION >= 40900) 704 # define __PSTL_PRAGMA_SIMD __PSTL_PRAGMA(omp simd) 705 #define __PSTL_PRAGMA_DECLARE_SIMD __PSTL_PRAGMA(omp declare simd) 706 # define __PSTL_PRAGMA_SIMD_REDUCTION(PRM) __PSTL_PRAGMA(omp simd reduction(PRM)) 708 # define __PSTL_PRAGMA_SIMD 709 # define __PSTL_PRAGMA_SIMD_REDUCTION(PRM) 710 # endif //Enable SIMD 712 #define __PSTL_PRAGMA_SIMD_SCAN(PRM) 713 #define __PSTL_PRAGMA_SIMD_INCLUSIVE_SCAN(PRM) 714 #define __PSTL_PRAGMA_SIMD_EXCLUSIVE_SCAN(PRM) 716 #define __PSTL_PRAGMA_FORCEINLINE 723 # define __PSTL_CPP14_2RANGE_MISMATCH_EQUAL_PRESENT \ 724 (__cplusplus >= 201300L || __cpp_lib_robust_nonmodifying_seq_ops == 201304) 725 # define __PSTL_CPP14_MAKE_REVERSE_ITERATOR_PRESENT \ 726 (__cplusplus >= 201402L || __cpp_lib_make_reverse_iterator == 201402) 727 # define __PSTL_CPP14_INTEGER_SEQUENCE_PRESENT (__cplusplus >= 201402L) 728 # define __PSTL_CPP14_VARIABLE_TEMPLATES_PRESENT (__cplusplus >= 201402L) 730 # if __PSTL_MONOTONIC_PRESENT 731 # define __PSTL_PRAGMA_SIMD_ORDERED_MONOTONIC(PRM) \ 732 __PSTL_PRAGMA(omp ordered simd monotonic(PRM)) 733 # define __PSTL_PRAGMA_SIMD_ORDERED_MONOTONIC_2ARGS(PRM1, PRM2) \ 734 __PSTL_PRAGMA(omp ordered simd monotonic(PRM1, PRM2)) 736 # define __PSTL_PRAGMA_SIMD_ORDERED_MONOTONIC(PRM) 737 # define __PSTL_PRAGMA_SIMD_ORDERED_MONOTONIC_2ARGS(PRM1, PRM2) 747 #define __PSTL_PRAGMA_DECLARE_REDUCTION(NAME, OP) \ 748 __PSTL_PRAGMA(omp declare reduction(NAME : OP : omp_out(omp_in)) initializer(omp_priv = omp_orig)) 750 # define __PSTL_PRAGMA_VECTOR_UNALIGNED 751 # define __PSTL_USE_NONTEMPORAL_STORES_IF_ALLOWED 752 # define __PSTL_PRAGMA_LOCATION 754 # define __PSTL_PRAGMA_MESSAGE_IMPL(x) \ 755 __PSTL_PRAGMA(message(__PSTL_STRING_CONCAT(__PSTL_PRAGMA_LOCATION, x))) 756 # define __PSTL_PRAGMA_MESSAGE_POLICIES(x) __PSTL_PRAGMA_MESSAGE_IMPL(x) 759 # define __PSTL_PRAGMA_MESSAGE(x) 761 # if defined(__GLIBCXX__) 762 # define __PSTL_CPP11_STD_ROTATE_BROKEN \ 763 (__PSTL_GCC_VERSION < 50100) //GCC 5.1 release 772 #define _GLIBCXX_HAVE_ACOSF 1 775 #define _GLIBCXX_HAVE_ACOSL 1 778 #define _GLIBCXX_HAVE_ALIGNED_ALLOC 1 781 #define _GLIBCXX_HAVE_ARPA_INET_H 1 784 #define _GLIBCXX_HAVE_ASINF 1 787 #define _GLIBCXX_HAVE_ASINL 1 790 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1 793 #define _GLIBCXX_HAVE_ATAN2F 1 796 #define _GLIBCXX_HAVE_ATAN2L 1 799 #define _GLIBCXX_HAVE_ATANF 1 802 #define _GLIBCXX_HAVE_ATANL 1 805 #define _GLIBCXX_HAVE_ATOMIC_LOCK_POLICY 1 808 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1 814 #define _GLIBCXX_HAVE_CEILF 1 817 #define _GLIBCXX_HAVE_CEILL 1 820 #define _GLIBCXX_HAVE_COMPLEX_H 1 823 #define _GLIBCXX_HAVE_COSF 1 826 #define _GLIBCXX_HAVE_COSHF 1 829 #define _GLIBCXX_HAVE_COSHL 1 832 #define _GLIBCXX_HAVE_COSL 1 835 #define _GLIBCXX_HAVE_DIRENT_H 1 838 #define _GLIBCXX_HAVE_DLFCN_H 1 841 #define _GLIBCXX_HAVE_EBADMSG 1 844 #define _GLIBCXX_HAVE_ECANCELED 1 847 #define _GLIBCXX_HAVE_ECHILD 1 850 #define _GLIBCXX_HAVE_EIDRM 1 853 #define _GLIBCXX_HAVE_ENDIAN_H 1 856 #define _GLIBCXX_HAVE_ENODATA 1 859 #define _GLIBCXX_HAVE_ENOLINK 1 862 #define _GLIBCXX_HAVE_ENOSPC 1 865 #define _GLIBCXX_HAVE_ENOSR 1 868 #define _GLIBCXX_HAVE_ENOSTR 1 871 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1 874 #define _GLIBCXX_HAVE_ENOTSUP 1 877 #define _GLIBCXX_HAVE_EOVERFLOW 1 880 #define _GLIBCXX_HAVE_EOWNERDEAD 1 883 #define _GLIBCXX_HAVE_EPERM 1 886 #define _GLIBCXX_HAVE_EPROTO 1 889 #define _GLIBCXX_HAVE_ETIME 1 892 #define _GLIBCXX_HAVE_ETIMEDOUT 1 895 #define _GLIBCXX_HAVE_ETXTBSY 1 898 #define _GLIBCXX_HAVE_EWOULDBLOCK 1 901 #define _GLIBCXX_HAVE_EXCEPTION_PTR_SINCE_GCC46 1 904 #define _GLIBCXX_HAVE_EXECINFO_H 1 907 #define _GLIBCXX_HAVE_EXPF 1 910 #define _GLIBCXX_HAVE_EXPL 1 913 #define _GLIBCXX_HAVE_FABSF 1 916 #define _GLIBCXX_HAVE_FABSL 1 919 #define _GLIBCXX_HAVE_FCNTL_H 1 922 #define _GLIBCXX_HAVE_FENV_H 1 925 #define _GLIBCXX_HAVE_FINITE 1 928 #define _GLIBCXX_HAVE_FINITEF 1 931 #define _GLIBCXX_HAVE_FINITEL 1 934 #define _GLIBCXX_HAVE_FLOAT_H 1 937 #define _GLIBCXX_HAVE_FLOORF 1 940 #define _GLIBCXX_HAVE_FLOORL 1 943 #define _GLIBCXX_HAVE_FMODF 1 946 #define _GLIBCXX_HAVE_FMODL 1 955 #define _GLIBCXX_HAVE_FREXPF 1 958 #define _GLIBCXX_HAVE_FREXPL 1 961 #define _GLIBCXX_HAVE_GETIPINFO 1 964 #define _GLIBCXX_HAVE_GETS 1 967 #define _GLIBCXX_HAVE_HYPOT 1 970 #define _GLIBCXX_HAVE_HYPOTF 1 973 #define _GLIBCXX_HAVE_HYPOTL 1 976 #define _GLIBCXX_HAVE_ICONV 1 982 #define _GLIBCXX_HAVE_INT64_T 1 985 #define _GLIBCXX_HAVE_INT64_T_LONG 1 991 #define _GLIBCXX_HAVE_INTTYPES_H 1 997 #define _GLIBCXX_HAVE_ISINFF 1 1000 #define _GLIBCXX_HAVE_ISINFL 1 1006 #define _GLIBCXX_HAVE_ISNANF 1 1009 #define _GLIBCXX_HAVE_ISNANL 1 1012 #define _GLIBCXX_HAVE_ISWBLANK 1 1015 #define _GLIBCXX_HAVE_LC_MESSAGES 1 1018 #define _GLIBCXX_HAVE_LDEXPF 1 1021 #define _GLIBCXX_HAVE_LDEXPL 1 1024 #define _GLIBCXX_HAVE_LIBINTL_H 1 1027 #define _GLIBCXX_HAVE_LIMIT_AS 1 1030 #define _GLIBCXX_HAVE_LIMIT_DATA 1 1033 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1 1036 #define _GLIBCXX_HAVE_LIMIT_RSS 1 1039 #define _GLIBCXX_HAVE_LIMIT_VMEM 0 1042 #define _GLIBCXX_HAVE_LINK 1 1045 #define _GLIBCXX_HAVE_LINUX_FUTEX 1 1048 #define _GLIBCXX_HAVE_LINUX_RANDOM_H 1 1051 #define _GLIBCXX_HAVE_LINUX_TYPES_H 1 1054 #define _GLIBCXX_HAVE_LOCALE_H 1 1057 #define _GLIBCXX_HAVE_LOG10F 1 1060 #define _GLIBCXX_HAVE_LOG10L 1 1063 #define _GLIBCXX_HAVE_LOGF 1 1066 #define _GLIBCXX_HAVE_LOGL 1 1075 #define _GLIBCXX_HAVE_MBSTATE_T 1 1078 #define _GLIBCXX_HAVE_MEMALIGN 1 1081 #define _GLIBCXX_HAVE_MEMORY_H 1 1084 #define _GLIBCXX_HAVE_MODF 1 1087 #define _GLIBCXX_HAVE_MODFF 1 1090 #define _GLIBCXX_HAVE_MODFL 1 1096 #define _GLIBCXX_HAVE_NETDB_H 1 1099 #define _GLIBCXX_HAVE_NETINET_IN_H 1 1102 #define _GLIBCXX_HAVE_NETINET_TCP_H 1 1111 #define _GLIBCXX_HAVE_POLL 1 1114 #define _GLIBCXX_HAVE_POLL_H 1 1117 #define _GLIBCXX_HAVE_POSIX_MEMALIGN 1 1120 #define _GLIBCXX_HAVE_POWF 1 1123 #define _GLIBCXX_HAVE_POWL 1 1129 #define _GLIBCXX_HAVE_QUICK_EXIT 1 1132 #define _GLIBCXX_HAVE_READLINK 1 1135 #define _GLIBCXX_HAVE_SETENV 1 1138 #define _GLIBCXX_HAVE_SINCOS 1 1141 #define _GLIBCXX_HAVE_SINCOSF 1 1144 #define _GLIBCXX_HAVE_SINCOSL 1 1147 #define _GLIBCXX_HAVE_SINF 1 1150 #define _GLIBCXX_HAVE_SINHF 1 1153 #define _GLIBCXX_HAVE_SINHL 1 1156 #define _GLIBCXX_HAVE_SINL 1 1162 #define _GLIBCXX_HAVE_SOCKATMARK 1 1165 #define _GLIBCXX_HAVE_SQRTF 1 1168 #define _GLIBCXX_HAVE_SQRTL 1 1171 #define _GLIBCXX_HAVE_STDALIGN_H 1 1174 #define _GLIBCXX_HAVE_STDBOOL_H 1 1177 #define _GLIBCXX_HAVE_STDINT_H 1 1180 #define _GLIBCXX_HAVE_STDLIB_H 1 1183 #define _GLIBCXX_HAVE_STRERROR_L 1 1186 #define _GLIBCXX_HAVE_STRERROR_R 1 1189 #define _GLIBCXX_HAVE_STRINGS_H 1 1192 #define _GLIBCXX_HAVE_STRING_H 1 1195 #define _GLIBCXX_HAVE_STRTOF 1 1198 #define _GLIBCXX_HAVE_STRTOLD 1 1201 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1 1204 #define _GLIBCXX_HAVE_STRXFRM_L 1 1207 #define _GLIBCXX_HAVE_SYMLINK 1 1211 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1 1217 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 1220 #define _GLIBCXX_HAVE_SYS_IPC_H 1 1229 #define _GLIBCXX_HAVE_SYS_PARAM_H 1 1232 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 1235 #define _GLIBCXX_HAVE_SYS_SDT_H 1 1238 #define _GLIBCXX_HAVE_SYS_SEM_H 1 1241 #define _GLIBCXX_HAVE_SYS_SOCKET_H 1 1244 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1 1247 #define _GLIBCXX_HAVE_SYS_STAT_H 1 1250 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1 1253 #define _GLIBCXX_HAVE_SYS_TIME_H 1 1256 #define _GLIBCXX_HAVE_SYS_TYPES_H 1 1259 #define _GLIBCXX_HAVE_SYS_UIO_H 1 1265 #define _GLIBCXX_HAVE_S_ISREG 1 1268 #define _GLIBCXX_HAVE_TANF 1 1271 #define _GLIBCXX_HAVE_TANHF 1 1274 #define _GLIBCXX_HAVE_TANHL 1 1277 #define _GLIBCXX_HAVE_TANL 1 1280 #define _GLIBCXX_HAVE_TGMATH_H 1 1283 #define _GLIBCXX_HAVE_TIMESPEC_GET 1 1286 #define _GLIBCXX_HAVE_TLS 1 1289 #define _GLIBCXX_HAVE_TRUNCATE 1 1292 #define _GLIBCXX_HAVE_UCHAR_H 1 1295 #define _GLIBCXX_HAVE_UNISTD_H 1 1301 #define _GLIBCXX_HAVE_UTIME_H 1 1304 #define _GLIBCXX_HAVE_VFWSCANF 1 1307 #define _GLIBCXX_HAVE_VSWSCANF 1 1310 #define _GLIBCXX_HAVE_VWSCANF 1 1313 #define _GLIBCXX_HAVE_WCHAR_H 1 1316 #define _GLIBCXX_HAVE_WCSTOF 1 1319 #define _GLIBCXX_HAVE_WCTYPE_H 1 1325 #define _GLIBCXX_HAVE_WRITEV 1 1523 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1 1526 #define _GLIBCXX_ICONV_CONST 1530 #define LT_OBJDIR ".libs/" 1536 #define _GLIBCXX_PACKAGE_BUGREPORT "" 1539 #define _GLIBCXX_PACKAGE_NAME "package-unused" 1542 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" 1545 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" 1548 #define _GLIBCXX_PACKAGE_URL "" 1551 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" 1569 #define STDC_HEADERS 1 1577 #define _GLIBCXX11_USE_C99_COMPLEX 1 1581 #define _GLIBCXX11_USE_C99_MATH 1 1585 #define _GLIBCXX11_USE_C99_STDIO 1 1589 #define _GLIBCXX11_USE_C99_STDLIB 1 1593 #define _GLIBCXX11_USE_C99_WCHAR 1 1598 #define _GLIBCXX98_USE_C99_COMPLEX 1 1602 #define _GLIBCXX98_USE_C99_MATH 1 1606 #define _GLIBCXX98_USE_C99_STDIO 1 1610 #define _GLIBCXX98_USE_C99_STDLIB 1 1614 #define _GLIBCXX98_USE_C99_WCHAR 1 1617 #define _GLIBCXX_ATOMIC_BUILTINS 1 1624 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0 1627 #define _GLIBCXX_HAS_GTHREADS 1 1630 #define _GLIBCXX_HOSTED 1 1635 #define _GLIBCXX_MANGLE_SIZE_T m 1644 #define _GLIBCXX_RES_LIMITS 1 1650 #define _GLIBCXX_STDIO_EOF -1 1653 #define _GLIBCXX_STDIO_SEEK_CUR 1 1656 #define _GLIBCXX_STDIO_SEEK_END 2 1659 #define _GLIBCXX_SYMVER 1 1665 #define _GLIBCXX_SYMVER_GNU 1 1675 #define _GLIBCXX_USE_C11_UCHAR_CXX11 1 1679 #define _GLIBCXX_USE_C99 1 1684 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1 1688 #define _GLIBCXX_USE_C99_CTYPE_TR1 1 1692 #define _GLIBCXX_USE_C99_FENV_TR1 1 1696 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1 1700 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1 1704 #define _GLIBCXX_USE_C99_MATH_TR1 1 1708 #define _GLIBCXX_USE_C99_STDINT_TR1 1 1715 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1 1718 #define _GLIBCXX_USE_CLOCK_REALTIME 1 1722 #define _GLIBCXX_USE_DECIMAL_FLOAT 1 1726 #define _GLIBCXX_USE_DEV_RANDOM 1 1729 #define _GLIBCXX_USE_FCHMOD 1 1732 #define _GLIBCXX_USE_FCHMODAT 1 1735 #define _GLIBCXX_USE_GETTIMEOFDAY 1 1738 #define _GLIBCXX_USE_GET_NPROCS 1 1741 #define _GLIBCXX_USE_INT128 1 1744 #define _GLIBCXX_USE_LFS 1 1747 #define _GLIBCXX_USE_LONG_LONG 1 1750 #define _GLIBCXX_USE_LSTAT 1 1753 #define _GLIBCXX_USE_NANOSLEEP 1 1756 #define _GLIBCXX_USE_NLS 1 1762 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1 1766 #define _GLIBCXX_USE_RANDOM_TR1 1 1769 #define _GLIBCXX_USE_REALPATH 1 1772 #define _GLIBCXX_USE_SCHED_YIELD 1 1775 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1 1781 #define _GLIBCXX_USE_SENDFILE 1 1784 #define _GLIBCXX_USE_ST_MTIM 1 1790 #define _GLIBCXX_USE_TMPNAM 1 1793 #define _GLIBCXX_USE_UTIME 1 1797 #define _GLIBCXX_USE_UTIMENSAT 1 1800 #define _GLIBCXX_USE_WCHAR_T 1 1803 #define _GLIBCXX_VERBOSE 1 1806 #define _GLIBCXX_X86_RDRAND 1 1809 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1 1812 #if __cplusplus >= 201103L 1817 #if __cplusplus >= 201103L 1821 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) 1822 # define _GLIBCXX_HAVE_ACOSF 1 1823 # define acosf _acosf 1826 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) 1827 # define _GLIBCXX_HAVE_ACOSL 1 1828 # define acosl _acosl 1831 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) 1832 # define _GLIBCXX_HAVE_ASINF 1 1833 # define asinf _asinf 1836 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) 1837 # define _GLIBCXX_HAVE_ASINL 1 1838 # define asinl _asinl 1841 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F) 1842 # define _GLIBCXX_HAVE_ATAN2F 1 1843 # define atan2f _atan2f 1846 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L) 1847 # define _GLIBCXX_HAVE_ATAN2L 1 1848 # define atan2l _atan2l 1851 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) 1852 # define _GLIBCXX_HAVE_ATANF 1 1853 # define atanf _atanf 1856 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) 1857 # define _GLIBCXX_HAVE_ATANL 1 1858 # define atanl _atanl 1861 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) 1862 # define _GLIBCXX_HAVE_CEILF 1 1863 # define ceilf _ceilf 1866 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) 1867 # define _GLIBCXX_HAVE_CEILL 1 1868 # define ceill _ceill 1871 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) 1872 # define _GLIBCXX_HAVE_COSF 1 1876 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) 1877 # define _GLIBCXX_HAVE_COSHF 1 1878 # define coshf _coshf 1881 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) 1882 # define _GLIBCXX_HAVE_COSHL 1 1883 # define coshl _coshl 1886 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) 1887 # define _GLIBCXX_HAVE_COSL 1 1891 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) 1892 # define _GLIBCXX_HAVE_EXPF 1 1896 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) 1897 # define _GLIBCXX_HAVE_EXPL 1 1901 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) 1902 # define _GLIBCXX_HAVE_FABSF 1 1903 # define fabsf _fabsf 1906 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) 1907 # define _GLIBCXX_HAVE_FABSL 1 1908 # define fabsl _fabsl 1911 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) 1912 # define _GLIBCXX_HAVE_FINITE 1 1913 # define finite _finite 1916 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) 1917 # define _GLIBCXX_HAVE_FINITEF 1 1918 # define finitef _finitef 1921 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) 1922 # define _GLIBCXX_HAVE_FINITEL 1 1923 # define finitel _finitel 1926 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) 1927 # define _GLIBCXX_HAVE_FLOORF 1 1928 # define floorf _floorf 1931 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) 1932 # define _GLIBCXX_HAVE_FLOORL 1 1933 # define floorl _floorl 1936 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) 1937 # define _GLIBCXX_HAVE_FMODF 1 1938 # define fmodf _fmodf 1941 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) 1942 # define _GLIBCXX_HAVE_FMODL 1 1943 # define fmodl _fmodl 1946 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) 1947 # define _GLIBCXX_HAVE_FPCLASS 1 1948 # define fpclass _fpclass 1951 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) 1952 # define _GLIBCXX_HAVE_FREXPF 1 1953 # define frexpf _frexpf 1956 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) 1957 # define _GLIBCXX_HAVE_FREXPL 1 1958 # define frexpl _frexpl 1961 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT) 1962 # define _GLIBCXX_HAVE_HYPOT 1 1963 # define hypot _hypot 1966 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF) 1967 # define _GLIBCXX_HAVE_HYPOTF 1 1968 # define hypotf _hypotf 1971 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL) 1972 # define _GLIBCXX_HAVE_HYPOTL 1 1973 # define hypotl _hypotl 1976 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) 1977 # define _GLIBCXX_HAVE_ISINF 1 1978 # define isinf _isinf 1981 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) 1982 # define _GLIBCXX_HAVE_ISINFF 1 1983 # define isinff _isinff 1986 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) 1987 # define _GLIBCXX_HAVE_ISINFL 1 1988 # define isinfl _isinfl 1991 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) 1992 # define _GLIBCXX_HAVE_ISNAN 1 1993 # define isnan _isnan 1996 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) 1997 # define _GLIBCXX_HAVE_ISNANF 1 1998 # define isnanf _isnanf 2001 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) 2002 # define _GLIBCXX_HAVE_ISNANL 1 2003 # define isnanl _isnanl 2006 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) 2007 # define _GLIBCXX_HAVE_LDEXPF 1 2008 # define ldexpf _ldexpf 2011 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) 2012 # define _GLIBCXX_HAVE_LDEXPL 1 2013 # define ldexpl _ldexpl 2016 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) 2017 # define _GLIBCXX_HAVE_LOG10F 1 2018 # define log10f _log10f 2021 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) 2022 # define _GLIBCXX_HAVE_LOG10L 1 2023 # define log10l _log10l 2026 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) 2027 # define _GLIBCXX_HAVE_LOGF 1 2031 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) 2032 # define _GLIBCXX_HAVE_LOGL 1 2036 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) 2037 # define _GLIBCXX_HAVE_MODF 1 2041 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF) 2042 # define _GLIBCXX_HAVE_MODFF 1 2043 # define modff _modff 2046 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL) 2047 # define _GLIBCXX_HAVE_MODFL 1 2048 # define modfl _modfl 2051 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) 2052 # define _GLIBCXX_HAVE_POWF 1 2056 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) 2057 # define _GLIBCXX_HAVE_POWL 1 2061 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) 2062 # define _GLIBCXX_HAVE_QFPCLASS 1 2063 # define qfpclass _qfpclass 2066 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) 2067 # define _GLIBCXX_HAVE_SINCOS 1 2068 # define sincos _sincos 2071 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) 2072 # define _GLIBCXX_HAVE_SINCOSF 1 2073 # define sincosf _sincosf 2076 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) 2077 # define _GLIBCXX_HAVE_SINCOSL 1 2078 # define sincosl _sincosl 2081 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) 2082 # define _GLIBCXX_HAVE_SINF 1 2086 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) 2087 # define _GLIBCXX_HAVE_SINHF 1 2088 # define sinhf _sinhf 2091 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) 2092 # define _GLIBCXX_HAVE_SINHL 1 2093 # define sinhl _sinhl 2096 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) 2097 # define _GLIBCXX_HAVE_SINL 1 2101 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) 2102 # define _GLIBCXX_HAVE_SQRTF 1 2103 # define sqrtf _sqrtf 2106 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) 2107 # define _GLIBCXX_HAVE_SQRTL 1 2108 # define sqrtl _sqrtl 2111 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) 2112 # define _GLIBCXX_HAVE_STRTOF 1 2113 # define strtof _strtof 2116 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) 2117 # define _GLIBCXX_HAVE_STRTOLD 1 2118 # define strtold _strtold 2121 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) 2122 # define _GLIBCXX_HAVE_TANF 1 2126 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) 2127 # define _GLIBCXX_HAVE_TANHF 1 2128 # define tanhf _tanhf 2131 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) 2132 # define _GLIBCXX_HAVE_TANHL 1 2133 # define tanhl _tanhl 2136 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) 2137 # define _GLIBCXX_HAVE_TANL 1 2141 #endif // _GLIBCXX_CXX_CONFIG_H ISO C++ entities toplevel namespace is std.
GNU extensions for public use.