184d9c625SLionel Sambuc /* This file is automatically generated. DO NOT EDIT! */ 2*0a6a1f1dSLionel Sambuc /* Generated from: NetBSD: mknative-gcc,v 1.79 2014/05/29 16:27:50 skrll Exp */ 3*0a6a1f1dSLionel Sambuc /* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */ 484d9c625SLionel Sambuc 584d9c625SLionel Sambuc // Predefined symbols and macros -*- C++ -*- 684d9c625SLionel Sambuc 7*0a6a1f1dSLionel Sambuc // Copyright (C) 1997-2013 Free Software Foundation, Inc. 884d9c625SLionel Sambuc // 984d9c625SLionel Sambuc // This file is part of the GNU ISO C++ Library. This library is free 1084d9c625SLionel Sambuc // software; you can redistribute it and/or modify it under the 1184d9c625SLionel Sambuc // terms of the GNU General Public License as published by the 1284d9c625SLionel Sambuc // Free Software Foundation; either version 3, or (at your option) 1384d9c625SLionel Sambuc // any later version. 1484d9c625SLionel Sambuc 1584d9c625SLionel Sambuc // This library is distributed in the hope that it will be useful, 1684d9c625SLionel Sambuc // but WITHOUT ANY WARRANTY; without even the implied warranty of 1784d9c625SLionel Sambuc // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1884d9c625SLionel Sambuc // GNU General Public License for more details. 1984d9c625SLionel Sambuc 2084d9c625SLionel Sambuc // Under Section 7 of GPL version 3, you are granted additional 2184d9c625SLionel Sambuc // permissions described in the GCC Runtime Library Exception, version 2284d9c625SLionel Sambuc // 3.1, as published by the Free Software Foundation. 2384d9c625SLionel Sambuc 2484d9c625SLionel Sambuc // You should have received a copy of the GNU General Public License and 2584d9c625SLionel Sambuc // a copy of the GCC Runtime Library Exception along with this program; 2684d9c625SLionel Sambuc // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 2784d9c625SLionel Sambuc // <http://www.gnu.org/licenses/>. 2884d9c625SLionel Sambuc 29*0a6a1f1dSLionel Sambuc /** @file bits/c++config.h 3084d9c625SLionel Sambuc * This is an internal header file, included by other library headers. 31*0a6a1f1dSLionel Sambuc * Do not attempt to use it directly. @headername{iosfwd} 3284d9c625SLionel Sambuc */ 3384d9c625SLionel Sambuc 3484d9c625SLionel Sambuc #ifndef _GLIBCXX_CXX_CONFIG_H 3584d9c625SLionel Sambuc #define _GLIBCXX_CXX_CONFIG_H 1 3684d9c625SLionel Sambuc 3784d9c625SLionel Sambuc // The current version of the C++ library in compressed ISO date format. 38*0a6a1f1dSLionel Sambuc #define __GLIBCXX__ 20141219 3984d9c625SLionel Sambuc 40*0a6a1f1dSLionel Sambuc // Macros for various attributes. 41*0a6a1f1dSLionel Sambuc // _GLIBCXX_PURE 42*0a6a1f1dSLionel Sambuc // _GLIBCXX_CONST 43*0a6a1f1dSLionel Sambuc // _GLIBCXX_NORETURN 44*0a6a1f1dSLionel Sambuc // _GLIBCXX_NOTHROW 45*0a6a1f1dSLionel Sambuc // _GLIBCXX_VISIBILITY 46*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_PURE 47*0a6a1f1dSLionel Sambuc # define _GLIBCXX_PURE __attribute__ ((__pure__)) 48*0a6a1f1dSLionel Sambuc #endif 49*0a6a1f1dSLionel Sambuc 50*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_CONST 51*0a6a1f1dSLionel Sambuc # define _GLIBCXX_CONST __attribute__ ((__const__)) 52*0a6a1f1dSLionel Sambuc #endif 53*0a6a1f1dSLionel Sambuc 54*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_NORETURN 55*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__)) 56*0a6a1f1dSLionel Sambuc #endif 57*0a6a1f1dSLionel Sambuc 58*0a6a1f1dSLionel Sambuc // See below for C++ 59*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_NOTHROW 60*0a6a1f1dSLionel Sambuc # ifndef __cplusplus 61*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NOTHROW __attribute__((__nothrow__)) 62*0a6a1f1dSLionel Sambuc # endif 63*0a6a1f1dSLionel Sambuc #endif 64*0a6a1f1dSLionel Sambuc 65*0a6a1f1dSLionel Sambuc // Macros for visibility attributes. 6684d9c625SLionel Sambuc // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 67*0a6a1f1dSLionel Sambuc // _GLIBCXX_VISIBILITY 6884d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1 6984d9c625SLionel Sambuc 7084d9c625SLionel Sambuc #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 71*0a6a1f1dSLionel Sambuc # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V))) 7284d9c625SLionel Sambuc #else 7384d9c625SLionel Sambuc // If this is not supplied by the OS-specific or CPU-specific 7484d9c625SLionel Sambuc // headers included below, it will be defined to an empty default. 75*0a6a1f1dSLionel Sambuc # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V) 7684d9c625SLionel Sambuc #endif 7784d9c625SLionel Sambuc 78*0a6a1f1dSLionel Sambuc // Macros for deprecated attributes. 79*0a6a1f1dSLionel Sambuc // _GLIBCXX_USE_DEPRECATED 8084d9c625SLionel Sambuc // _GLIBCXX_DEPRECATED 81*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_USE_DEPRECATED 82*0a6a1f1dSLionel Sambuc # define _GLIBCXX_USE_DEPRECATED 1 8384d9c625SLionel Sambuc #endif 8484d9c625SLionel Sambuc 85*0a6a1f1dSLionel Sambuc #if defined(__DEPRECATED) && (__cplusplus >= 201103L) 86*0a6a1f1dSLionel Sambuc # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__)) 8784d9c625SLionel Sambuc #else 88*0a6a1f1dSLionel Sambuc # define _GLIBCXX_DEPRECATED 8984d9c625SLionel Sambuc #endif 9084d9c625SLionel Sambuc 91*0a6a1f1dSLionel Sambuc // Macros for ABI tag attributes. 92*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_ABI_TAG_CXX11 93*0a6a1f1dSLionel Sambuc # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11"))) 94*0a6a1f1dSLionel Sambuc #endif 9584d9c625SLionel Sambuc 96*0a6a1f1dSLionel Sambuc 97*0a6a1f1dSLionel Sambuc #if __cplusplus 98*0a6a1f1dSLionel Sambuc 99*0a6a1f1dSLionel Sambuc // Macro for constexpr, to support in mixed 03/0x mode. 100*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_CONSTEXPR 101*0a6a1f1dSLionel Sambuc # if __cplusplus >= 201103L 102*0a6a1f1dSLionel Sambuc # define _GLIBCXX_CONSTEXPR constexpr 103*0a6a1f1dSLionel Sambuc # define _GLIBCXX_USE_CONSTEXPR constexpr 104*0a6a1f1dSLionel Sambuc # else 105*0a6a1f1dSLionel Sambuc # define _GLIBCXX_CONSTEXPR 106*0a6a1f1dSLionel Sambuc # define _GLIBCXX_USE_CONSTEXPR const 107*0a6a1f1dSLionel Sambuc # endif 108*0a6a1f1dSLionel Sambuc #endif 109*0a6a1f1dSLionel Sambuc 110*0a6a1f1dSLionel Sambuc // Macro for noexcept, to support in mixed 03/0x mode. 111*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_NOEXCEPT 112*0a6a1f1dSLionel Sambuc # if __cplusplus >= 201103L 113*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NOEXCEPT noexcept 114*0a6a1f1dSLionel Sambuc # define _GLIBCXX_USE_NOEXCEPT noexcept 115*0a6a1f1dSLionel Sambuc # define _GLIBCXX_THROW(_EXC) 116*0a6a1f1dSLionel Sambuc # else 117*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NOEXCEPT 118*0a6a1f1dSLionel Sambuc # define _GLIBCXX_USE_NOEXCEPT throw() 119*0a6a1f1dSLionel Sambuc # define _GLIBCXX_THROW(_EXC) throw(_EXC) 120*0a6a1f1dSLionel Sambuc # endif 121*0a6a1f1dSLionel Sambuc #endif 122*0a6a1f1dSLionel Sambuc 123*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_NOTHROW 124*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT 125*0a6a1f1dSLionel Sambuc #endif 126*0a6a1f1dSLionel Sambuc 127*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_THROW_OR_ABORT 128*0a6a1f1dSLionel Sambuc # if __EXCEPTIONS 129*0a6a1f1dSLionel Sambuc # define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC)) 130*0a6a1f1dSLionel Sambuc # else 131*0a6a1f1dSLionel Sambuc # define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort()) 132*0a6a1f1dSLionel Sambuc # endif 133*0a6a1f1dSLionel Sambuc #endif 134*0a6a1f1dSLionel Sambuc 135*0a6a1f1dSLionel Sambuc // Macro for extern template, ie controling template linkage via use 136*0a6a1f1dSLionel Sambuc // of extern keyword on template declaration. As documented in the g++ 137*0a6a1f1dSLionel Sambuc // manual, it inhibits all implicit instantiations and is used 138*0a6a1f1dSLionel Sambuc // throughout the library to avoid multiple weak definitions for 139*0a6a1f1dSLionel Sambuc // required types that are already explicitly instantiated in the 140*0a6a1f1dSLionel Sambuc // library binary. This substantially reduces the binary size of 141*0a6a1f1dSLionel Sambuc // resulting executables. 142*0a6a1f1dSLionel Sambuc // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern 143*0a6a1f1dSLionel Sambuc // templates only in basic_string, thus activating its debug-mode 144*0a6a1f1dSLionel Sambuc // checks even at -O0. 145*0a6a1f1dSLionel Sambuc # define _GLIBCXX_EXTERN_TEMPLATE 1 146*0a6a1f1dSLionel Sambuc 14784d9c625SLionel Sambuc /* 148*0a6a1f1dSLionel Sambuc Outline of libstdc++ namespaces. 149*0a6a1f1dSLionel Sambuc 15084d9c625SLionel Sambuc namespace std 15184d9c625SLionel Sambuc { 15284d9c625SLionel Sambuc namespace __debug { } 15384d9c625SLionel Sambuc namespace __parallel { } 154*0a6a1f1dSLionel Sambuc namespace __profile { } 15584d9c625SLionel Sambuc namespace __cxx1998 { } 15684d9c625SLionel Sambuc 157*0a6a1f1dSLionel Sambuc namespace __detail { } 158*0a6a1f1dSLionel Sambuc 159*0a6a1f1dSLionel Sambuc namespace rel_ops { } 160*0a6a1f1dSLionel Sambuc 161*0a6a1f1dSLionel Sambuc namespace tr1 162*0a6a1f1dSLionel Sambuc { 163*0a6a1f1dSLionel Sambuc namespace placeholders { } 164*0a6a1f1dSLionel Sambuc namespace regex_constants { } 165*0a6a1f1dSLionel Sambuc namespace __detail { } 16684d9c625SLionel Sambuc } 167*0a6a1f1dSLionel Sambuc 168*0a6a1f1dSLionel Sambuc namespace tr2 { } 169*0a6a1f1dSLionel Sambuc 170*0a6a1f1dSLionel Sambuc namespace decimal { } 171*0a6a1f1dSLionel Sambuc 172*0a6a1f1dSLionel Sambuc namespace chrono { } 173*0a6a1f1dSLionel Sambuc namespace placeholders { } 174*0a6a1f1dSLionel Sambuc namespace regex_constants { } 175*0a6a1f1dSLionel Sambuc namespace this_thread { } 176*0a6a1f1dSLionel Sambuc } 177*0a6a1f1dSLionel Sambuc 178*0a6a1f1dSLionel Sambuc namespace abi { } 179*0a6a1f1dSLionel Sambuc 180*0a6a1f1dSLionel Sambuc namespace __gnu_cxx 181*0a6a1f1dSLionel Sambuc { 182*0a6a1f1dSLionel Sambuc namespace __detail { } 183*0a6a1f1dSLionel Sambuc } 184*0a6a1f1dSLionel Sambuc 185*0a6a1f1dSLionel Sambuc For full details see: 186*0a6a1f1dSLionel Sambuc http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html 18784d9c625SLionel Sambuc */ 18884d9c625SLionel Sambuc namespace std 18984d9c625SLionel Sambuc { 190*0a6a1f1dSLionel Sambuc typedef __SIZE_TYPE__ size_t; 191*0a6a1f1dSLionel Sambuc typedef __PTRDIFF_TYPE__ ptrdiff_t; 192*0a6a1f1dSLionel Sambuc 193*0a6a1f1dSLionel Sambuc #if __cplusplus >= 201103L 194*0a6a1f1dSLionel Sambuc typedef decltype(nullptr) nullptr_t; 195*0a6a1f1dSLionel Sambuc #endif 19684d9c625SLionel Sambuc } 19784d9c625SLionel Sambuc 198*0a6a1f1dSLionel Sambuc 199*0a6a1f1dSLionel Sambuc // Defined if inline namespaces are used for versioning. 200*0a6a1f1dSLionel Sambuc # define _GLIBCXX_INLINE_VERSION 0 201*0a6a1f1dSLionel Sambuc 202*0a6a1f1dSLionel Sambuc // Inline namespace for symbol versioning. 203*0a6a1f1dSLionel Sambuc #if _GLIBCXX_INLINE_VERSION 204*0a6a1f1dSLionel Sambuc 20584d9c625SLionel Sambuc namespace std 20684d9c625SLionel Sambuc { 207*0a6a1f1dSLionel Sambuc inline namespace __7 { } 208*0a6a1f1dSLionel Sambuc 209*0a6a1f1dSLionel Sambuc namespace rel_ops { inline namespace __7 { } } 210*0a6a1f1dSLionel Sambuc 211*0a6a1f1dSLionel Sambuc namespace tr1 212*0a6a1f1dSLionel Sambuc { 213*0a6a1f1dSLionel Sambuc inline namespace __7 { } 214*0a6a1f1dSLionel Sambuc namespace placeholders { inline namespace __7 { } } 215*0a6a1f1dSLionel Sambuc namespace regex_constants { inline namespace __7 { } } 216*0a6a1f1dSLionel Sambuc namespace __detail { inline namespace __7 { } } 21784d9c625SLionel Sambuc } 21884d9c625SLionel Sambuc 219*0a6a1f1dSLionel Sambuc namespace tr2 220*0a6a1f1dSLionel Sambuc { inline namespace __7 { } } 22184d9c625SLionel Sambuc 222*0a6a1f1dSLionel Sambuc namespace decimal { inline namespace __7 { } } 223*0a6a1f1dSLionel Sambuc 224*0a6a1f1dSLionel Sambuc namespace chrono { inline namespace __7 { } } 225*0a6a1f1dSLionel Sambuc namespace placeholders { inline namespace __7 { } } 226*0a6a1f1dSLionel Sambuc namespace regex_constants { inline namespace __7 { } } 227*0a6a1f1dSLionel Sambuc namespace this_thread { inline namespace __7 { } } 228*0a6a1f1dSLionel Sambuc 229*0a6a1f1dSLionel Sambuc namespace __detail { inline namespace __7 { } } 23084d9c625SLionel Sambuc } 23184d9c625SLionel Sambuc 23284d9c625SLionel Sambuc namespace __gnu_cxx 23384d9c625SLionel Sambuc { 234*0a6a1f1dSLionel Sambuc inline namespace __7 { } 235*0a6a1f1dSLionel Sambuc namespace __detail { inline namespace __7 { } } 23684d9c625SLionel Sambuc } 237*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 { 238*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_VERSION } 239*0a6a1f1dSLionel Sambuc #else 240*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_VERSION 241*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_VERSION 24284d9c625SLionel Sambuc #endif 24384d9c625SLionel Sambuc 244*0a6a1f1dSLionel Sambuc 245*0a6a1f1dSLionel Sambuc // Inline namespaces for special modes: debug, parallel, profile. 246*0a6a1f1dSLionel Sambuc #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \ 247*0a6a1f1dSLionel Sambuc || defined(_GLIBCXX_PROFILE) 248*0a6a1f1dSLionel Sambuc namespace std 249*0a6a1f1dSLionel Sambuc { 250*0a6a1f1dSLionel Sambuc // Non-inline namespace for components replaced by alternates in active mode. 251*0a6a1f1dSLionel Sambuc namespace __cxx1998 252*0a6a1f1dSLionel Sambuc { 253*0a6a1f1dSLionel Sambuc #if _GLIBCXX_INLINE_VERSION 254*0a6a1f1dSLionel Sambuc inline namespace __7 { } 255*0a6a1f1dSLionel Sambuc #endif 256*0a6a1f1dSLionel Sambuc } 257*0a6a1f1dSLionel Sambuc 258*0a6a1f1dSLionel Sambuc // Inline namespace for debug mode. 259*0a6a1f1dSLionel Sambuc # ifdef _GLIBCXX_DEBUG 260*0a6a1f1dSLionel Sambuc inline namespace __debug { } 261*0a6a1f1dSLionel Sambuc # endif 262*0a6a1f1dSLionel Sambuc 263*0a6a1f1dSLionel Sambuc // Inline namespaces for parallel mode. 264*0a6a1f1dSLionel Sambuc # ifdef _GLIBCXX_PARALLEL 265*0a6a1f1dSLionel Sambuc inline namespace __parallel { } 266*0a6a1f1dSLionel Sambuc # endif 267*0a6a1f1dSLionel Sambuc 268*0a6a1f1dSLionel Sambuc // Inline namespaces for profile mode 269*0a6a1f1dSLionel Sambuc # ifdef _GLIBCXX_PROFILE 270*0a6a1f1dSLionel Sambuc inline namespace __profile { } 271*0a6a1f1dSLionel Sambuc # endif 272*0a6a1f1dSLionel Sambuc } 273*0a6a1f1dSLionel Sambuc 274*0a6a1f1dSLionel Sambuc // Check for invalid usage and unsupported mixed-mode use. 275*0a6a1f1dSLionel Sambuc # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL) 276*0a6a1f1dSLionel Sambuc # error illegal use of multiple inlined namespaces 277*0a6a1f1dSLionel Sambuc # endif 278*0a6a1f1dSLionel Sambuc # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG) 279*0a6a1f1dSLionel Sambuc # error illegal use of multiple inlined namespaces 280*0a6a1f1dSLionel Sambuc # endif 281*0a6a1f1dSLionel Sambuc # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL) 282*0a6a1f1dSLionel Sambuc # error illegal use of multiple inlined namespaces 283*0a6a1f1dSLionel Sambuc # endif 284*0a6a1f1dSLionel Sambuc 285*0a6a1f1dSLionel Sambuc // Check for invalid use due to lack for weak symbols. 286*0a6a1f1dSLionel Sambuc # if __NO_INLINE__ && !__GXX_WEAK__ 287*0a6a1f1dSLionel Sambuc # warning currently using inlined namespace mode which may fail \ 288*0a6a1f1dSLionel Sambuc without inlining due to lack of weak symbols 289*0a6a1f1dSLionel Sambuc # endif 290*0a6a1f1dSLionel Sambuc #endif 291*0a6a1f1dSLionel Sambuc 292*0a6a1f1dSLionel Sambuc // Macros for namespace scope. Either namespace std:: or the name 293*0a6a1f1dSLionel Sambuc // of some nested namespace within it corresponding to the active mode. 294*0a6a1f1dSLionel Sambuc // _GLIBCXX_STD_A 295*0a6a1f1dSLionel Sambuc // _GLIBCXX_STD_C 296*0a6a1f1dSLionel Sambuc // 297*0a6a1f1dSLionel Sambuc // Macros for opening/closing conditional namespaces. 298*0a6a1f1dSLionel Sambuc // _GLIBCXX_BEGIN_NAMESPACE_ALGO 299*0a6a1f1dSLionel Sambuc // _GLIBCXX_END_NAMESPACE_ALGO 300*0a6a1f1dSLionel Sambuc // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 301*0a6a1f1dSLionel Sambuc // _GLIBCXX_END_NAMESPACE_CONTAINER 302*0a6a1f1dSLionel Sambuc #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE) 303*0a6a1f1dSLionel Sambuc # define _GLIBCXX_STD_C __cxx1998 304*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \ 305*0a6a1f1dSLionel Sambuc namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION 306*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_CONTAINER \ 307*0a6a1f1dSLionel Sambuc _GLIBCXX_END_NAMESPACE_VERSION } 308*0a6a1f1dSLionel Sambuc # undef _GLIBCXX_EXTERN_TEMPLATE 309*0a6a1f1dSLionel Sambuc # define _GLIBCXX_EXTERN_TEMPLATE -1 310*0a6a1f1dSLionel Sambuc #endif 311*0a6a1f1dSLionel Sambuc 312*0a6a1f1dSLionel Sambuc #ifdef _GLIBCXX_PARALLEL 313*0a6a1f1dSLionel Sambuc # define _GLIBCXX_STD_A __cxx1998 314*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \ 315*0a6a1f1dSLionel Sambuc namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION 316*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_ALGO \ 317*0a6a1f1dSLionel Sambuc _GLIBCXX_END_NAMESPACE_VERSION } 318*0a6a1f1dSLionel Sambuc #endif 319*0a6a1f1dSLionel Sambuc 320*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_STD_A 321*0a6a1f1dSLionel Sambuc # define _GLIBCXX_STD_A std 322*0a6a1f1dSLionel Sambuc #endif 323*0a6a1f1dSLionel Sambuc 324*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_STD_C 325*0a6a1f1dSLionel Sambuc # define _GLIBCXX_STD_C std 326*0a6a1f1dSLionel Sambuc #endif 327*0a6a1f1dSLionel Sambuc 328*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO 329*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_ALGO 330*0a6a1f1dSLionel Sambuc #endif 331*0a6a1f1dSLionel Sambuc 332*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_END_NAMESPACE_ALGO 333*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_ALGO 334*0a6a1f1dSLionel Sambuc #endif 335*0a6a1f1dSLionel Sambuc 336*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 337*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER 338*0a6a1f1dSLionel Sambuc #endif 339*0a6a1f1dSLionel Sambuc 340*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER 341*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_CONTAINER 342*0a6a1f1dSLionel Sambuc #endif 343*0a6a1f1dSLionel Sambuc 344*0a6a1f1dSLionel Sambuc // GLIBCXX_ABI Deprecated 345*0a6a1f1dSLionel Sambuc // Define if compatibility should be provided for -mlong-double-64. 34684d9c625SLionel Sambuc #undef _GLIBCXX_LONG_DOUBLE_COMPAT 34784d9c625SLionel Sambuc 348*0a6a1f1dSLionel Sambuc // Inline namespace for long double 128 mode. 34984d9c625SLionel Sambuc #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__ 35084d9c625SLionel Sambuc namespace std 35184d9c625SLionel Sambuc { 35284d9c625SLionel Sambuc inline namespace __gnu_cxx_ldbl128 { } 35384d9c625SLionel Sambuc } 354*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128:: 355*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 { 356*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_LDBL } 35784d9c625SLionel Sambuc #else 358*0a6a1f1dSLionel Sambuc # define _GLIBCXX_NAMESPACE_LDBL 359*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_NAMESPACE_LDBL 360*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_NAMESPACE_LDBL 36184d9c625SLionel Sambuc #endif 36284d9c625SLionel Sambuc 363*0a6a1f1dSLionel Sambuc // Assert. 364*0a6a1f1dSLionel Sambuc #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL) 365*0a6a1f1dSLionel Sambuc # define __glibcxx_assert(_Condition) 366*0a6a1f1dSLionel Sambuc #else 367*0a6a1f1dSLionel Sambuc namespace std 368*0a6a1f1dSLionel Sambuc { 369*0a6a1f1dSLionel Sambuc // Avoid the use of assert, because we're trying to keep the <cassert> 370*0a6a1f1dSLionel Sambuc // include out of the mix. 371*0a6a1f1dSLionel Sambuc inline void __replacement_assert(const char * __file,int __line,const char * __function,const char * __condition)372*0a6a1f1dSLionel Sambuc __replacement_assert(const char* __file, int __line, 373*0a6a1f1dSLionel Sambuc const char* __function, const char* __condition) 374*0a6a1f1dSLionel Sambuc { 375*0a6a1f1dSLionel Sambuc __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line, 376*0a6a1f1dSLionel Sambuc __function, __condition); 377*0a6a1f1dSLionel Sambuc __builtin_abort(); 378*0a6a1f1dSLionel Sambuc } 379*0a6a1f1dSLionel Sambuc } 380*0a6a1f1dSLionel Sambuc #define __glibcxx_assert(_Condition) \ 381*0a6a1f1dSLionel Sambuc do \ 382*0a6a1f1dSLionel Sambuc { \ 383*0a6a1f1dSLionel Sambuc if (! (_Condition)) \ 384*0a6a1f1dSLionel Sambuc std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \ 385*0a6a1f1dSLionel Sambuc #_Condition); \ 386*0a6a1f1dSLionel Sambuc } while (false) 387*0a6a1f1dSLionel Sambuc #endif 38884d9c625SLionel Sambuc 389*0a6a1f1dSLionel Sambuc // Macros for race detectors. 390*0a6a1f1dSLionel Sambuc // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and 391*0a6a1f1dSLionel Sambuc // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain 392*0a6a1f1dSLionel Sambuc // atomic (lock-free) synchronization to race detectors: 393*0a6a1f1dSLionel Sambuc // the race detector will infer a happens-before arc from the former to the 394*0a6a1f1dSLionel Sambuc // latter when they share the same argument pointer. 395*0a6a1f1dSLionel Sambuc // 396*0a6a1f1dSLionel Sambuc // The most frequent use case for these macros (and the only case in the 397*0a6a1f1dSLionel Sambuc // current implementation of the library) is atomic reference counting: 398*0a6a1f1dSLionel Sambuc // void _M_remove_reference() 399*0a6a1f1dSLionel Sambuc // { 400*0a6a1f1dSLionel Sambuc // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount); 401*0a6a1f1dSLionel Sambuc // if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0) 402*0a6a1f1dSLionel Sambuc // { 403*0a6a1f1dSLionel Sambuc // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount); 404*0a6a1f1dSLionel Sambuc // _M_destroy(__a); 405*0a6a1f1dSLionel Sambuc // } 406*0a6a1f1dSLionel Sambuc // } 407*0a6a1f1dSLionel Sambuc // The annotations in this example tell the race detector that all memory 408*0a6a1f1dSLionel Sambuc // accesses occurred when the refcount was positive do not race with 409*0a6a1f1dSLionel Sambuc // memory accesses which occurred after the refcount became zero. 410*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE 411*0a6a1f1dSLionel Sambuc # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) 412*0a6a1f1dSLionel Sambuc #endif 413*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER 414*0a6a1f1dSLionel Sambuc # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) 415*0a6a1f1dSLionel Sambuc #endif 416*0a6a1f1dSLionel Sambuc 417*0a6a1f1dSLionel Sambuc // Macros for C linkage: define extern "C" linkage only when using C++. 41884d9c625SLionel Sambuc # define _GLIBCXX_BEGIN_EXTERN_C extern "C" { 41984d9c625SLionel Sambuc # define _GLIBCXX_END_EXTERN_C } 42084d9c625SLionel Sambuc 42184d9c625SLionel Sambuc #else // !__cplusplus 42284d9c625SLionel Sambuc # define _GLIBCXX_BEGIN_EXTERN_C 42384d9c625SLionel Sambuc # define _GLIBCXX_END_EXTERN_C 42484d9c625SLionel Sambuc #endif 42584d9c625SLionel Sambuc 426*0a6a1f1dSLionel Sambuc 42784d9c625SLionel Sambuc // First includes. 42884d9c625SLionel Sambuc 42984d9c625SLionel Sambuc // Pick up any OS-specific definitions. 43084d9c625SLionel Sambuc #include <bits/os_defines.h> 43184d9c625SLionel Sambuc 43284d9c625SLionel Sambuc // Pick up any CPU-specific definitions. 43384d9c625SLionel Sambuc #include <bits/cpu_defines.h> 43484d9c625SLionel Sambuc 43584d9c625SLionel Sambuc // If platform uses neither visibility nor psuedo-visibility, 43684d9c625SLionel Sambuc // specify empty default for namespace annotation macros. 43784d9c625SLionel Sambuc #ifndef _GLIBCXX_PSEUDO_VISIBILITY 43884d9c625SLionel Sambuc # define _GLIBCXX_PSEUDO_VISIBILITY(V) 43984d9c625SLionel Sambuc #endif 44084d9c625SLionel Sambuc 44184d9c625SLionel Sambuc // Certain function definitions that are meant to be overridable from 44284d9c625SLionel Sambuc // user code are decorated with this macro. For some targets, this 44384d9c625SLionel Sambuc // macro causes these definitions to be weak. 44484d9c625SLionel Sambuc #ifndef _GLIBCXX_WEAK_DEFINITION 44584d9c625SLionel Sambuc # define _GLIBCXX_WEAK_DEFINITION 44684d9c625SLionel Sambuc #endif 44784d9c625SLionel Sambuc 44884d9c625SLionel Sambuc 44984d9c625SLionel Sambuc // The remainder of the prewritten config is automatic; all the 45084d9c625SLionel Sambuc // user hooks are listed above. 45184d9c625SLionel Sambuc 45284d9c625SLionel Sambuc // Create a boolean flag to be used to determine if --fast-math is set. 45384d9c625SLionel Sambuc #ifdef __FAST_MATH__ 45484d9c625SLionel Sambuc # define _GLIBCXX_FAST_MATH 1 45584d9c625SLionel Sambuc #else 45684d9c625SLionel Sambuc # define _GLIBCXX_FAST_MATH 0 45784d9c625SLionel Sambuc #endif 45884d9c625SLionel Sambuc 45984d9c625SLionel Sambuc // This marks string literals in header files to be extracted for eventual 46084d9c625SLionel Sambuc // translation. It is primarily used for messages in thrown exceptions; see 46184d9c625SLionel Sambuc // src/functexcept.cc. We use __N because the more traditional _N is used 46284d9c625SLionel Sambuc // for something else under certain OSes (see BADNAMES). 46384d9c625SLionel Sambuc #define __N(msgid) (msgid) 46484d9c625SLionel Sambuc 46584d9c625SLionel Sambuc // For example, <windows.h> is known to #define min and max as macros... 46684d9c625SLionel Sambuc #undef min 46784d9c625SLionel Sambuc #undef max 46884d9c625SLionel Sambuc 469*0a6a1f1dSLionel Sambuc // End of prewritten config; the settings discovered at configure time follow. 47084d9c625SLionel Sambuc /* config.h. Generated from config.h.in by configure. */ 47184d9c625SLionel Sambuc /* config.h.in. Generated from configure.ac by autoheader. */ 47284d9c625SLionel Sambuc 47384d9c625SLionel Sambuc /* Define to 1 if you have the `acosf' function. */ 474*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ACOSF 1 47584d9c625SLionel Sambuc 47684d9c625SLionel Sambuc /* Define to 1 if you have the `acosl' function. */ 477*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ACOSL 1 47884d9c625SLionel Sambuc 47984d9c625SLionel Sambuc /* Define to 1 if you have the `asinf' function. */ 480*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ASINF 1 48184d9c625SLionel Sambuc 48284d9c625SLionel Sambuc /* Define to 1 if you have the `asinl' function. */ 483*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ASINL 1 48484d9c625SLionel Sambuc 48584d9c625SLionel Sambuc /* Define to 1 if the target assembler supports .symver directive. */ 48684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1 48784d9c625SLionel Sambuc 48884d9c625SLionel Sambuc /* Define to 1 if you have the `atan2f' function. */ 489*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATAN2F 1 49084d9c625SLionel Sambuc 49184d9c625SLionel Sambuc /* Define to 1 if you have the `atan2l' function. */ 492*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATAN2L 1 49384d9c625SLionel Sambuc 49484d9c625SLionel Sambuc /* Define to 1 if you have the `atanf' function. */ 495*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATANF 1 49684d9c625SLionel Sambuc 49784d9c625SLionel Sambuc /* Define to 1 if you have the `atanl' function. */ 498*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATANL 1 499*0a6a1f1dSLionel Sambuc 500*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `at_quick_exit' function. */ 501*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1 50284d9c625SLionel Sambuc 50384d9c625SLionel Sambuc /* Define to 1 if the target assembler supports thread-local storage. */ 50484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_CC_TLS */ 50584d9c625SLionel Sambuc 50684d9c625SLionel Sambuc /* Define to 1 if you have the `ceilf' function. */ 507*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_CEILF 1 50884d9c625SLionel Sambuc 50984d9c625SLionel Sambuc /* Define to 1 if you have the `ceill' function. */ 510*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_CEILL 1 51184d9c625SLionel Sambuc 51284d9c625SLionel Sambuc /* Define to 1 if you have the <complex.h> header file. */ 51384d9c625SLionel Sambuc #define _GLIBCXX_HAVE_COMPLEX_H 1 51484d9c625SLionel Sambuc 51584d9c625SLionel Sambuc /* Define to 1 if you have the `cosf' function. */ 516*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSF 1 51784d9c625SLionel Sambuc 51884d9c625SLionel Sambuc /* Define to 1 if you have the `coshf' function. */ 519*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSHF 1 52084d9c625SLionel Sambuc 52184d9c625SLionel Sambuc /* Define to 1 if you have the `coshl' function. */ 522*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSHL 1 52384d9c625SLionel Sambuc 52484d9c625SLionel Sambuc /* Define to 1 if you have the `cosl' function. */ 525*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSL 1 52684d9c625SLionel Sambuc 52784d9c625SLionel Sambuc /* Define to 1 if you have the <dlfcn.h> header file. */ 52884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_DLFCN_H 1 52984d9c625SLionel Sambuc 53084d9c625SLionel Sambuc /* Define if EBADMSG exists. */ 53184d9c625SLionel Sambuc #define _GLIBCXX_HAVE_EBADMSG 1 53284d9c625SLionel Sambuc 53384d9c625SLionel Sambuc /* Define if ECANCELED exists. */ 53484d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ECANCELED 1 53584d9c625SLionel Sambuc 536*0a6a1f1dSLionel Sambuc /* Define if ECHILD exists. */ 537*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ECHILD 1 538*0a6a1f1dSLionel Sambuc 53984d9c625SLionel Sambuc /* Define if EIDRM exists. */ 54084d9c625SLionel Sambuc #define _GLIBCXX_HAVE_EIDRM 1 54184d9c625SLionel Sambuc 54284d9c625SLionel Sambuc /* Define to 1 if you have the <endian.h> header file. */ 54384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_ENDIAN_H */ 54484d9c625SLionel Sambuc 54584d9c625SLionel Sambuc /* Define if ENODATA exists. */ 54684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ENODATA 1 54784d9c625SLionel Sambuc 54884d9c625SLionel Sambuc /* Define if ENOLINK exists. */ 54984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ENOLINK 1 55084d9c625SLionel Sambuc 551*0a6a1f1dSLionel Sambuc /* Define if ENOSPC exists. */ 552*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENOSPC 1 553*0a6a1f1dSLionel Sambuc 55484d9c625SLionel Sambuc /* Define if ENOSR exists. */ 55584d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ENOSR 1 55684d9c625SLionel Sambuc 55784d9c625SLionel Sambuc /* Define if ENOSTR exists. */ 55884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ENOSTR 1 55984d9c625SLionel Sambuc 56084d9c625SLionel Sambuc /* Define if ENOTRECOVERABLE exists. */ 56184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_ENOTRECOVERABLE */ 56284d9c625SLionel Sambuc 56384d9c625SLionel Sambuc /* Define if ENOTSUP exists. */ 56484d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ENOTSUP 1 56584d9c625SLionel Sambuc 56684d9c625SLionel Sambuc /* Define if EOVERFLOW exists. */ 56784d9c625SLionel Sambuc #define _GLIBCXX_HAVE_EOVERFLOW 1 56884d9c625SLionel Sambuc 56984d9c625SLionel Sambuc /* Define if EOWNERDEAD exists. */ 57084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_EOWNERDEAD */ 57184d9c625SLionel Sambuc 572*0a6a1f1dSLionel Sambuc /* Define if EPERM exists. */ 573*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EPERM 1 574*0a6a1f1dSLionel Sambuc 57584d9c625SLionel Sambuc /* Define if EPROTO exists. */ 57684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_EPROTO 1 57784d9c625SLionel Sambuc 57884d9c625SLionel Sambuc /* Define if ETIME exists. */ 57984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ETIME 1 58084d9c625SLionel Sambuc 581*0a6a1f1dSLionel Sambuc /* Define if ETIMEDOUT exists. */ 582*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ETIMEDOUT 1 583*0a6a1f1dSLionel Sambuc 58484d9c625SLionel Sambuc /* Define if ETXTBSY exists. */ 58584d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ETXTBSY 1 58684d9c625SLionel Sambuc 587*0a6a1f1dSLionel Sambuc /* Define if EWOULDBLOCK exists. */ 588*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EWOULDBLOCK 1 589*0a6a1f1dSLionel Sambuc 59084d9c625SLionel Sambuc /* Define to 1 if you have the <execinfo.h> header file. */ 59184d9c625SLionel Sambuc #define _GLIBCXX_HAVE_EXECINFO_H 1 59284d9c625SLionel Sambuc 59384d9c625SLionel Sambuc /* Define to 1 if you have the `expf' function. */ 594*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EXPF 1 59584d9c625SLionel Sambuc 59684d9c625SLionel Sambuc /* Define to 1 if you have the `expl' function. */ 597*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EXPL 1 59884d9c625SLionel Sambuc 59984d9c625SLionel Sambuc /* Define to 1 if you have the `fabsf' function. */ 600*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FABSF 1 60184d9c625SLionel Sambuc 60284d9c625SLionel Sambuc /* Define to 1 if you have the `fabsl' function. */ 60384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_FABSL */ 60484d9c625SLionel Sambuc 60584d9c625SLionel Sambuc /* Define to 1 if you have the <fenv.h> header file. */ 60684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_FENV_H */ 60784d9c625SLionel Sambuc 60884d9c625SLionel Sambuc /* Define to 1 if you have the `finite' function. */ 60984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_FINITE 1 61084d9c625SLionel Sambuc 61184d9c625SLionel Sambuc /* Define to 1 if you have the `finitef' function. */ 61284d9c625SLionel Sambuc #define _GLIBCXX_HAVE_FINITEF 1 61384d9c625SLionel Sambuc 61484d9c625SLionel Sambuc /* Define to 1 if you have the `finitel' function. */ 61584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_FINITEL */ 61684d9c625SLionel Sambuc 61784d9c625SLionel Sambuc /* Define to 1 if you have the <float.h> header file. */ 61884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_FLOAT_H 1 61984d9c625SLionel Sambuc 62084d9c625SLionel Sambuc /* Define to 1 if you have the `floorf' function. */ 621*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FLOORF 1 62284d9c625SLionel Sambuc 62384d9c625SLionel Sambuc /* Define to 1 if you have the `floorl' function. */ 624*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FLOORL 1 62584d9c625SLionel Sambuc 62684d9c625SLionel Sambuc /* Define to 1 if you have the `fmodf' function. */ 627*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FMODF 1 62884d9c625SLionel Sambuc 62984d9c625SLionel Sambuc /* Define to 1 if you have the `fmodl' function. */ 630*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FMODL 1 63184d9c625SLionel Sambuc 63284d9c625SLionel Sambuc /* Define to 1 if you have the `fpclass' function. */ 63384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_FPCLASS */ 63484d9c625SLionel Sambuc 63584d9c625SLionel Sambuc /* Define to 1 if you have the <fp.h> header file. */ 63684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_FP_H */ 63784d9c625SLionel Sambuc 63884d9c625SLionel Sambuc /* Define to 1 if you have the `frexpf' function. */ 63984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_FREXPF 1 64084d9c625SLionel Sambuc 64184d9c625SLionel Sambuc /* Define to 1 if you have the `frexpl' function. */ 64284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_FREXPL */ 64384d9c625SLionel Sambuc 64484d9c625SLionel Sambuc /* Define if _Unwind_GetIPInfo is available. */ 64584d9c625SLionel Sambuc #define _GLIBCXX_HAVE_GETIPINFO 1 64684d9c625SLionel Sambuc 647*0a6a1f1dSLionel Sambuc /* Define if gets is available in <stdio.h>. */ 648*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_GETS 1 64984d9c625SLionel Sambuc 65084d9c625SLionel Sambuc /* Define to 1 if you have the `hypot' function. */ 651*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_HYPOT 1 65284d9c625SLionel Sambuc 65384d9c625SLionel Sambuc /* Define to 1 if you have the `hypotf' function. */ 65484d9c625SLionel Sambuc #define _GLIBCXX_HAVE_HYPOTF 1 65584d9c625SLionel Sambuc 65684d9c625SLionel Sambuc /* Define to 1 if you have the `hypotl' function. */ 657*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_HYPOTL 1 65884d9c625SLionel Sambuc 65984d9c625SLionel Sambuc /* Define if you have the iconv() function. */ 660*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ICONV 1 66184d9c625SLionel Sambuc 66284d9c625SLionel Sambuc /* Define to 1 if you have the <ieeefp.h> header file. */ 66384d9c625SLionel Sambuc #define _GLIBCXX_HAVE_IEEEFP_H 1 66484d9c625SLionel Sambuc 66584d9c625SLionel Sambuc /* Define if int64_t is available in <stdint.h>. */ 66684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_INT64_T 1 66784d9c625SLionel Sambuc 66884d9c625SLionel Sambuc /* Define if int64_t is a long. */ 66984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_INT64_T_LONG */ 67084d9c625SLionel Sambuc 67184d9c625SLionel Sambuc /* Define if int64_t is a long long. */ 67284d9c625SLionel Sambuc #define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1 67384d9c625SLionel Sambuc 67484d9c625SLionel Sambuc /* Define to 1 if you have the <inttypes.h> header file. */ 67584d9c625SLionel Sambuc #define _GLIBCXX_HAVE_INTTYPES_H 1 67684d9c625SLionel Sambuc 67784d9c625SLionel Sambuc /* Define to 1 if you have the `isinf' function. */ 67884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ISINF 1 67984d9c625SLionel Sambuc 68084d9c625SLionel Sambuc /* Define to 1 if you have the `isinff' function. */ 68184d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ISINFF 1 68284d9c625SLionel Sambuc 68384d9c625SLionel Sambuc /* Define to 1 if you have the `isinfl' function. */ 68484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_ISINFL */ 68584d9c625SLionel Sambuc 68684d9c625SLionel Sambuc /* Define to 1 if you have the `isnan' function. */ 68784d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ISNAN 1 68884d9c625SLionel Sambuc 68984d9c625SLionel Sambuc /* Define to 1 if you have the `isnanf' function. */ 69084d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ISNANF 1 69184d9c625SLionel Sambuc 69284d9c625SLionel Sambuc /* Define to 1 if you have the `isnanl' function. */ 69384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_ISNANL */ 69484d9c625SLionel Sambuc 69584d9c625SLionel Sambuc /* Defined if iswblank exists. */ 69684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_ISWBLANK 1 69784d9c625SLionel Sambuc 69884d9c625SLionel Sambuc /* Define if LC_MESSAGES is available in <locale.h>. */ 69984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_LC_MESSAGES 1 70084d9c625SLionel Sambuc 70184d9c625SLionel Sambuc /* Define to 1 if you have the `ldexpf' function. */ 702*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LDEXPF 1 70384d9c625SLionel Sambuc 70484d9c625SLionel Sambuc /* Define to 1 if you have the `ldexpl' function. */ 70584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_LDEXPL */ 70684d9c625SLionel Sambuc 70784d9c625SLionel Sambuc /* Define to 1 if you have the <libintl.h> header file. */ 70884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_LIBINTL_H */ 70984d9c625SLionel Sambuc 71084d9c625SLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 711*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_AS 1 71284d9c625SLionel Sambuc 71384d9c625SLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 714*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_DATA 1 71584d9c625SLionel Sambuc 71684d9c625SLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 717*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_FSIZE 1 71884d9c625SLionel Sambuc 71984d9c625SLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 720*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_RSS 1 72184d9c625SLionel Sambuc 72284d9c625SLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 723*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_VMEM 1 72484d9c625SLionel Sambuc 72584d9c625SLionel Sambuc /* Define if futex syscall is available. */ 72684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_LINUX_FUTEX */ 72784d9c625SLionel Sambuc 72884d9c625SLionel Sambuc /* Define to 1 if you have the <locale.h> header file. */ 72984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_LOCALE_H 1 73084d9c625SLionel Sambuc 73184d9c625SLionel Sambuc /* Define to 1 if you have the `log10f' function. */ 732*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOG10F 1 73384d9c625SLionel Sambuc 73484d9c625SLionel Sambuc /* Define to 1 if you have the `log10l' function. */ 735*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOG10L 1 73684d9c625SLionel Sambuc 73784d9c625SLionel Sambuc /* Define to 1 if you have the `logf' function. */ 738*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOGF 1 73984d9c625SLionel Sambuc 74084d9c625SLionel Sambuc /* Define to 1 if you have the `logl' function. */ 741*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOGL 1 74284d9c625SLionel Sambuc 74384d9c625SLionel Sambuc /* Define to 1 if you have the <machine/endian.h> header file. */ 74484d9c625SLionel Sambuc #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1 74584d9c625SLionel Sambuc 74684d9c625SLionel Sambuc /* Define to 1 if you have the <machine/param.h> header file. */ 74784d9c625SLionel Sambuc #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1 74884d9c625SLionel Sambuc 74984d9c625SLionel Sambuc /* Define if mbstate_t exists in wchar.h. */ 75084d9c625SLionel Sambuc #define _GLIBCXX_HAVE_MBSTATE_T 1 75184d9c625SLionel Sambuc 75284d9c625SLionel Sambuc /* Define to 1 if you have the <memory.h> header file. */ 75384d9c625SLionel Sambuc #define _GLIBCXX_HAVE_MEMORY_H 1 75484d9c625SLionel Sambuc 75584d9c625SLionel Sambuc /* Define to 1 if you have the `modf' function. */ 756*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MODF 1 75784d9c625SLionel Sambuc 75884d9c625SLionel Sambuc /* Define to 1 if you have the `modff' function. */ 759*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MODFF 1 76084d9c625SLionel Sambuc 76184d9c625SLionel Sambuc /* Define to 1 if you have the `modfl' function. */ 762*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MODFL 1 76384d9c625SLionel Sambuc 76484d9c625SLionel Sambuc /* Define to 1 if you have the <nan.h> header file. */ 76584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_NAN_H */ 76684d9c625SLionel Sambuc 76784d9c625SLionel Sambuc /* Define if poll is available in <poll.h>. */ 76884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_POLL 1 76984d9c625SLionel Sambuc 77084d9c625SLionel Sambuc /* Define to 1 if you have the `powf' function. */ 771*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_POWF 1 77284d9c625SLionel Sambuc 77384d9c625SLionel Sambuc /* Define to 1 if you have the `powl' function. */ 774*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_POWL 1 77584d9c625SLionel Sambuc 77684d9c625SLionel Sambuc /* Define to 1 if you have the `qfpclass' function. */ 77784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_QFPCLASS */ 77884d9c625SLionel Sambuc 779*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `quick_exit' function. */ 780*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_QUICK_EXIT 1 781*0a6a1f1dSLionel Sambuc 78284d9c625SLionel Sambuc /* Define to 1 if you have the `setenv' function. */ 783*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SETENV 1 78484d9c625SLionel Sambuc 78584d9c625SLionel Sambuc /* Define to 1 if you have the `sincos' function. */ 78684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_SINCOS */ 78784d9c625SLionel Sambuc 78884d9c625SLionel Sambuc /* Define to 1 if you have the `sincosf' function. */ 78984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_SINCOSF */ 79084d9c625SLionel Sambuc 79184d9c625SLionel Sambuc /* Define to 1 if you have the `sincosl' function. */ 79284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_SINCOSL */ 79384d9c625SLionel Sambuc 79484d9c625SLionel Sambuc /* Define to 1 if you have the `sinf' function. */ 795*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINF 1 79684d9c625SLionel Sambuc 79784d9c625SLionel Sambuc /* Define to 1 if you have the `sinhf' function. */ 798*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINHF 1 79984d9c625SLionel Sambuc 80084d9c625SLionel Sambuc /* Define to 1 if you have the `sinhl' function. */ 801*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINHL 1 80284d9c625SLionel Sambuc 80384d9c625SLionel Sambuc /* Define to 1 if you have the `sinl' function. */ 804*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINL 1 805*0a6a1f1dSLionel Sambuc 806*0a6a1f1dSLionel Sambuc /* Defined if sleep exists. */ 807*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SLEEP */ 80884d9c625SLionel Sambuc 80984d9c625SLionel Sambuc /* Define to 1 if you have the `sqrtf' function. */ 810*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SQRTF 1 81184d9c625SLionel Sambuc 81284d9c625SLionel Sambuc /* Define to 1 if you have the `sqrtl' function. */ 813*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SQRTL 1 814*0a6a1f1dSLionel Sambuc 815*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <stdalign.h> header file. */ 816*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_STDALIGN_H */ 81784d9c625SLionel Sambuc 81884d9c625SLionel Sambuc /* Define to 1 if you have the <stdbool.h> header file. */ 81984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_STDBOOL_H 1 82084d9c625SLionel Sambuc 82184d9c625SLionel Sambuc /* Define to 1 if you have the <stdint.h> header file. */ 82284d9c625SLionel Sambuc #define _GLIBCXX_HAVE_STDINT_H 1 82384d9c625SLionel Sambuc 82484d9c625SLionel Sambuc /* Define to 1 if you have the <stdlib.h> header file. */ 82584d9c625SLionel Sambuc #define _GLIBCXX_HAVE_STDLIB_H 1 82684d9c625SLionel Sambuc 82784d9c625SLionel Sambuc /* Define if strerror_l is available in <string.h>. */ 82884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_STRERROR_L */ 82984d9c625SLionel Sambuc 83084d9c625SLionel Sambuc /* Define if strerror_r is available in <string.h>. */ 83184d9c625SLionel Sambuc #define _GLIBCXX_HAVE_STRERROR_R 1 83284d9c625SLionel Sambuc 83384d9c625SLionel Sambuc /* Define to 1 if you have the <strings.h> header file. */ 83484d9c625SLionel Sambuc #define _GLIBCXX_HAVE_STRINGS_H 1 83584d9c625SLionel Sambuc 83684d9c625SLionel Sambuc /* Define to 1 if you have the <string.h> header file. */ 83784d9c625SLionel Sambuc #define _GLIBCXX_HAVE_STRING_H 1 83884d9c625SLionel Sambuc 83984d9c625SLionel Sambuc /* Define to 1 if you have the `strtof' function. */ 840*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRTOF 1 84184d9c625SLionel Sambuc 84284d9c625SLionel Sambuc /* Define to 1 if you have the `strtold' function. */ 843*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRTOLD 1 84484d9c625SLionel Sambuc 84584d9c625SLionel Sambuc /* Define if strxfrm_l is available in <string.h>. */ 84684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_STRXFRM_L */ 84784d9c625SLionel Sambuc 848*0a6a1f1dSLionel Sambuc /* Define to 1 if the target runtime linker supports binding the same symbol 849*0a6a1f1dSLionel Sambuc to different versions. */ 850*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT */ 851*0a6a1f1dSLionel Sambuc 85284d9c625SLionel Sambuc /* Define to 1 if you have the <sys/filio.h> header file. */ 85384d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_FILIO_H 1 85484d9c625SLionel Sambuc 85584d9c625SLionel Sambuc /* Define to 1 if you have the <sys/ioctl.h> header file. */ 85684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 85784d9c625SLionel Sambuc 85884d9c625SLionel Sambuc /* Define to 1 if you have the <sys/ipc.h> header file. */ 85984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_IPC_H 1 86084d9c625SLionel Sambuc 86184d9c625SLionel Sambuc /* Define to 1 if you have the <sys/isa_defs.h> header file. */ 86284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ 86384d9c625SLionel Sambuc 86484d9c625SLionel Sambuc /* Define to 1 if you have the <sys/machine.h> header file. */ 86584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ 86684d9c625SLionel Sambuc 86784d9c625SLionel Sambuc /* Define to 1 if you have the <sys/param.h> header file. */ 86884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_PARAM_H 1 86984d9c625SLionel Sambuc 87084d9c625SLionel Sambuc /* Define to 1 if you have the <sys/resource.h> header file. */ 87184d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 87284d9c625SLionel Sambuc 873*0a6a1f1dSLionel Sambuc /* Define to 1 if you have a suitable <sys/sdt.h> header file */ 874*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SYS_SDT_H */ 875*0a6a1f1dSLionel Sambuc 87684d9c625SLionel Sambuc /* Define to 1 if you have the <sys/sem.h> header file. */ 87784d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_SEM_H 1 87884d9c625SLionel Sambuc 87984d9c625SLionel Sambuc /* Define to 1 if you have the <sys/stat.h> header file. */ 88084d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_STAT_H 1 88184d9c625SLionel Sambuc 882*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/sysinfo.h> header file. */ 883*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SYS_SYSINFO_H */ 884*0a6a1f1dSLionel Sambuc 88584d9c625SLionel Sambuc /* Define to 1 if you have the <sys/time.h> header file. */ 88684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_TIME_H 1 88784d9c625SLionel Sambuc 88884d9c625SLionel Sambuc /* Define to 1 if you have the <sys/types.h> header file. */ 88984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_TYPES_H 1 89084d9c625SLionel Sambuc 89184d9c625SLionel Sambuc /* Define to 1 if you have the <sys/uio.h> header file. */ 89284d9c625SLionel Sambuc #define _GLIBCXX_HAVE_SYS_UIO_H 1 89384d9c625SLionel Sambuc 89484d9c625SLionel Sambuc /* Define if S_IFREG is available in <sys/stat.h>. */ 89584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE_S_IFREG */ 89684d9c625SLionel Sambuc 89784d9c625SLionel Sambuc /* Define if S_IFREG is available in <sys/stat.h>. */ 89884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_S_ISREG 1 89984d9c625SLionel Sambuc 90084d9c625SLionel Sambuc /* Define to 1 if you have the `tanf' function. */ 901*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANF 1 90284d9c625SLionel Sambuc 90384d9c625SLionel Sambuc /* Define to 1 if you have the `tanhf' function. */ 904*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANHF 1 90584d9c625SLionel Sambuc 90684d9c625SLionel Sambuc /* Define to 1 if you have the `tanhl' function. */ 907*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANHL 1 90884d9c625SLionel Sambuc 90984d9c625SLionel Sambuc /* Define to 1 if you have the `tanl' function. */ 910*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANL 1 91184d9c625SLionel Sambuc 91284d9c625SLionel Sambuc /* Define to 1 if you have the <tgmath.h> header file. */ 91384d9c625SLionel Sambuc #define _GLIBCXX_HAVE_TGMATH_H 1 91484d9c625SLionel Sambuc 91584d9c625SLionel Sambuc /* Define to 1 if the target supports thread-local storage. */ 916*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TLS 1 91784d9c625SLionel Sambuc 91884d9c625SLionel Sambuc /* Define to 1 if you have the <unistd.h> header file. */ 91984d9c625SLionel Sambuc #define _GLIBCXX_HAVE_UNISTD_H 1 92084d9c625SLionel Sambuc 921*0a6a1f1dSLionel Sambuc /* Defined if usleep exists. */ 922*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_USLEEP */ 923*0a6a1f1dSLionel Sambuc 92484d9c625SLionel Sambuc /* Defined if vfwscanf exists. */ 92584d9c625SLionel Sambuc #define _GLIBCXX_HAVE_VFWSCANF 1 92684d9c625SLionel Sambuc 92784d9c625SLionel Sambuc /* Defined if vswscanf exists. */ 92884d9c625SLionel Sambuc #define _GLIBCXX_HAVE_VSWSCANF 1 92984d9c625SLionel Sambuc 93084d9c625SLionel Sambuc /* Defined if vwscanf exists. */ 93184d9c625SLionel Sambuc #define _GLIBCXX_HAVE_VWSCANF 1 93284d9c625SLionel Sambuc 93384d9c625SLionel Sambuc /* Define to 1 if you have the <wchar.h> header file. */ 93484d9c625SLionel Sambuc #define _GLIBCXX_HAVE_WCHAR_H 1 93584d9c625SLionel Sambuc 93684d9c625SLionel Sambuc /* Defined if wcstof exists. */ 93784d9c625SLionel Sambuc #define _GLIBCXX_HAVE_WCSTOF 1 93884d9c625SLionel Sambuc 93984d9c625SLionel Sambuc /* Define to 1 if you have the <wctype.h> header file. */ 94084d9c625SLionel Sambuc #define _GLIBCXX_HAVE_WCTYPE_H 1 94184d9c625SLionel Sambuc 942*0a6a1f1dSLionel Sambuc /* Defined if Sleep exists. */ 943*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */ 944*0a6a1f1dSLionel Sambuc 94584d9c625SLionel Sambuc /* Define if writev is available in <sys/uio.h>. */ 94684d9c625SLionel Sambuc #define _GLIBCXX_HAVE_WRITEV 1 94784d9c625SLionel Sambuc 94884d9c625SLionel Sambuc /* Define to 1 if you have the `_acosf' function. */ 94984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ACOSF */ 95084d9c625SLionel Sambuc 95184d9c625SLionel Sambuc /* Define to 1 if you have the `_acosl' function. */ 95284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ACOSL */ 95384d9c625SLionel Sambuc 95484d9c625SLionel Sambuc /* Define to 1 if you have the `_asinf' function. */ 95584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ASINF */ 95684d9c625SLionel Sambuc 95784d9c625SLionel Sambuc /* Define to 1 if you have the `_asinl' function. */ 95884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ASINL */ 95984d9c625SLionel Sambuc 96084d9c625SLionel Sambuc /* Define to 1 if you have the `_atan2f' function. */ 96184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ATAN2F */ 96284d9c625SLionel Sambuc 96384d9c625SLionel Sambuc /* Define to 1 if you have the `_atan2l' function. */ 96484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ATAN2L */ 96584d9c625SLionel Sambuc 96684d9c625SLionel Sambuc /* Define to 1 if you have the `_atanf' function. */ 96784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ATANF */ 96884d9c625SLionel Sambuc 96984d9c625SLionel Sambuc /* Define to 1 if you have the `_atanl' function. */ 97084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ATANL */ 97184d9c625SLionel Sambuc 97284d9c625SLionel Sambuc /* Define to 1 if you have the `_ceilf' function. */ 97384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__CEILF */ 97484d9c625SLionel Sambuc 97584d9c625SLionel Sambuc /* Define to 1 if you have the `_ceill' function. */ 97684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__CEILL */ 97784d9c625SLionel Sambuc 97884d9c625SLionel Sambuc /* Define to 1 if you have the `_cosf' function. */ 97984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__COSF */ 98084d9c625SLionel Sambuc 98184d9c625SLionel Sambuc /* Define to 1 if you have the `_coshf' function. */ 98284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__COSHF */ 98384d9c625SLionel Sambuc 98484d9c625SLionel Sambuc /* Define to 1 if you have the `_coshl' function. */ 98584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__COSHL */ 98684d9c625SLionel Sambuc 98784d9c625SLionel Sambuc /* Define to 1 if you have the `_cosl' function. */ 98884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__COSL */ 98984d9c625SLionel Sambuc 99084d9c625SLionel Sambuc /* Define to 1 if you have the `_expf' function. */ 99184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__EXPF */ 99284d9c625SLionel Sambuc 99384d9c625SLionel Sambuc /* Define to 1 if you have the `_expl' function. */ 99484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__EXPL */ 99584d9c625SLionel Sambuc 99684d9c625SLionel Sambuc /* Define to 1 if you have the `_fabsf' function. */ 99784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FABSF */ 99884d9c625SLionel Sambuc 99984d9c625SLionel Sambuc /* Define to 1 if you have the `_fabsl' function. */ 100084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FABSL */ 100184d9c625SLionel Sambuc 100284d9c625SLionel Sambuc /* Define to 1 if you have the `_finite' function. */ 100384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FINITE */ 100484d9c625SLionel Sambuc 100584d9c625SLionel Sambuc /* Define to 1 if you have the `_finitef' function. */ 100684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FINITEF */ 100784d9c625SLionel Sambuc 100884d9c625SLionel Sambuc /* Define to 1 if you have the `_finitel' function. */ 100984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FINITEL */ 101084d9c625SLionel Sambuc 101184d9c625SLionel Sambuc /* Define to 1 if you have the `_floorf' function. */ 101284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FLOORF */ 101384d9c625SLionel Sambuc 101484d9c625SLionel Sambuc /* Define to 1 if you have the `_floorl' function. */ 101584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FLOORL */ 101684d9c625SLionel Sambuc 101784d9c625SLionel Sambuc /* Define to 1 if you have the `_fmodf' function. */ 101884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FMODF */ 101984d9c625SLionel Sambuc 102084d9c625SLionel Sambuc /* Define to 1 if you have the `_fmodl' function. */ 102184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FMODL */ 102284d9c625SLionel Sambuc 102384d9c625SLionel Sambuc /* Define to 1 if you have the `_fpclass' function. */ 102484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FPCLASS */ 102584d9c625SLionel Sambuc 102684d9c625SLionel Sambuc /* Define to 1 if you have the `_frexpf' function. */ 102784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FREXPF */ 102884d9c625SLionel Sambuc 102984d9c625SLionel Sambuc /* Define to 1 if you have the `_frexpl' function. */ 103084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__FREXPL */ 103184d9c625SLionel Sambuc 103284d9c625SLionel Sambuc /* Define to 1 if you have the `_hypot' function. */ 103384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__HYPOT */ 103484d9c625SLionel Sambuc 103584d9c625SLionel Sambuc /* Define to 1 if you have the `_hypotf' function. */ 103684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__HYPOTF */ 103784d9c625SLionel Sambuc 103884d9c625SLionel Sambuc /* Define to 1 if you have the `_hypotl' function. */ 103984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__HYPOTL */ 104084d9c625SLionel Sambuc 104184d9c625SLionel Sambuc /* Define to 1 if you have the `_isinf' function. */ 104284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ISINF */ 104384d9c625SLionel Sambuc 104484d9c625SLionel Sambuc /* Define to 1 if you have the `_isinff' function. */ 104584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ISINFF */ 104684d9c625SLionel Sambuc 104784d9c625SLionel Sambuc /* Define to 1 if you have the `_isinfl' function. */ 104884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ISINFL */ 104984d9c625SLionel Sambuc 105084d9c625SLionel Sambuc /* Define to 1 if you have the `_isnan' function. */ 105184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ISNAN */ 105284d9c625SLionel Sambuc 105384d9c625SLionel Sambuc /* Define to 1 if you have the `_isnanf' function. */ 105484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ISNANF */ 105584d9c625SLionel Sambuc 105684d9c625SLionel Sambuc /* Define to 1 if you have the `_isnanl' function. */ 105784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__ISNANL */ 105884d9c625SLionel Sambuc 105984d9c625SLionel Sambuc /* Define to 1 if you have the `_ldexpf' function. */ 106084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__LDEXPF */ 106184d9c625SLionel Sambuc 106284d9c625SLionel Sambuc /* Define to 1 if you have the `_ldexpl' function. */ 106384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__LDEXPL */ 106484d9c625SLionel Sambuc 106584d9c625SLionel Sambuc /* Define to 1 if you have the `_log10f' function. */ 106684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__LOG10F */ 106784d9c625SLionel Sambuc 106884d9c625SLionel Sambuc /* Define to 1 if you have the `_log10l' function. */ 106984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__LOG10L */ 107084d9c625SLionel Sambuc 107184d9c625SLionel Sambuc /* Define to 1 if you have the `_logf' function. */ 107284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__LOGF */ 107384d9c625SLionel Sambuc 107484d9c625SLionel Sambuc /* Define to 1 if you have the `_logl' function. */ 107584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__LOGL */ 107684d9c625SLionel Sambuc 107784d9c625SLionel Sambuc /* Define to 1 if you have the `_modf' function. */ 107884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__MODF */ 107984d9c625SLionel Sambuc 108084d9c625SLionel Sambuc /* Define to 1 if you have the `_modff' function. */ 108184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__MODFF */ 108284d9c625SLionel Sambuc 108384d9c625SLionel Sambuc /* Define to 1 if you have the `_modfl' function. */ 108484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__MODFL */ 108584d9c625SLionel Sambuc 108684d9c625SLionel Sambuc /* Define to 1 if you have the `_powf' function. */ 108784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__POWF */ 108884d9c625SLionel Sambuc 108984d9c625SLionel Sambuc /* Define to 1 if you have the `_powl' function. */ 109084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__POWL */ 109184d9c625SLionel Sambuc 109284d9c625SLionel Sambuc /* Define to 1 if you have the `_qfpclass' function. */ 109384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__QFPCLASS */ 109484d9c625SLionel Sambuc 109584d9c625SLionel Sambuc /* Define to 1 if you have the `_sincos' function. */ 109684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINCOS */ 109784d9c625SLionel Sambuc 109884d9c625SLionel Sambuc /* Define to 1 if you have the `_sincosf' function. */ 109984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINCOSF */ 110084d9c625SLionel Sambuc 110184d9c625SLionel Sambuc /* Define to 1 if you have the `_sincosl' function. */ 110284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINCOSL */ 110384d9c625SLionel Sambuc 110484d9c625SLionel Sambuc /* Define to 1 if you have the `_sinf' function. */ 110584d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINF */ 110684d9c625SLionel Sambuc 110784d9c625SLionel Sambuc /* Define to 1 if you have the `_sinhf' function. */ 110884d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINHF */ 110984d9c625SLionel Sambuc 111084d9c625SLionel Sambuc /* Define to 1 if you have the `_sinhl' function. */ 111184d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINHL */ 111284d9c625SLionel Sambuc 111384d9c625SLionel Sambuc /* Define to 1 if you have the `_sinl' function. */ 111484d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SINL */ 111584d9c625SLionel Sambuc 111684d9c625SLionel Sambuc /* Define to 1 if you have the `_sqrtf' function. */ 111784d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SQRTF */ 111884d9c625SLionel Sambuc 111984d9c625SLionel Sambuc /* Define to 1 if you have the `_sqrtl' function. */ 112084d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__SQRTL */ 112184d9c625SLionel Sambuc 112284d9c625SLionel Sambuc /* Define to 1 if you have the `_tanf' function. */ 112384d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__TANF */ 112484d9c625SLionel Sambuc 112584d9c625SLionel Sambuc /* Define to 1 if you have the `_tanhf' function. */ 112684d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__TANHF */ 112784d9c625SLionel Sambuc 112884d9c625SLionel Sambuc /* Define to 1 if you have the `_tanhl' function. */ 112984d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__TANHL */ 113084d9c625SLionel Sambuc 113184d9c625SLionel Sambuc /* Define to 1 if you have the `_tanl' function. */ 113284d9c625SLionel Sambuc /* #undef _GLIBCXX_HAVE__TANL */ 113384d9c625SLionel Sambuc 1134*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */ 1135*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL */ 1136*0a6a1f1dSLionel Sambuc 113784d9c625SLionel Sambuc /* Define as const if the declaration of iconv() needs const. */ 1138*0a6a1f1dSLionel Sambuc #define _GLIBCXX_ICONV_CONST const 113984d9c625SLionel Sambuc 114084d9c625SLionel Sambuc /* Define to the sub-directory in which libtool stores uninstalled libraries. 114184d9c625SLionel Sambuc */ 114284d9c625SLionel Sambuc #define LT_OBJDIR ".libs/" 114384d9c625SLionel Sambuc 114484d9c625SLionel Sambuc /* Name of package */ 114584d9c625SLionel Sambuc /* #undef _GLIBCXX_PACKAGE */ 114684d9c625SLionel Sambuc 114784d9c625SLionel Sambuc /* Define to the address where bug reports for this package should be sent. */ 114884d9c625SLionel Sambuc #define _GLIBCXX_PACKAGE_BUGREPORT "" 114984d9c625SLionel Sambuc 115084d9c625SLionel Sambuc /* Define to the full name of this package. */ 115184d9c625SLionel Sambuc #define _GLIBCXX_PACKAGE_NAME "package-unused" 115284d9c625SLionel Sambuc 115384d9c625SLionel Sambuc /* Define to the full name and version of this package. */ 115484d9c625SLionel Sambuc #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" 115584d9c625SLionel Sambuc 115684d9c625SLionel Sambuc /* Define to the one symbol short name of this package. */ 115784d9c625SLionel Sambuc #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" 115884d9c625SLionel Sambuc 115984d9c625SLionel Sambuc /* Define to the home page for this package. */ 116084d9c625SLionel Sambuc #define _GLIBCXX_PACKAGE_URL "" 116184d9c625SLionel Sambuc 116284d9c625SLionel Sambuc /* Define to the version of this package. */ 116384d9c625SLionel Sambuc #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" 116484d9c625SLionel Sambuc 116584d9c625SLionel Sambuc /* The size of `char', as computed by sizeof. */ 116684d9c625SLionel Sambuc /* #undef SIZEOF_CHAR */ 116784d9c625SLionel Sambuc 116884d9c625SLionel Sambuc /* The size of `int', as computed by sizeof. */ 116984d9c625SLionel Sambuc /* #undef SIZEOF_INT */ 117084d9c625SLionel Sambuc 117184d9c625SLionel Sambuc /* The size of `long', as computed by sizeof. */ 117284d9c625SLionel Sambuc /* #undef SIZEOF_LONG */ 117384d9c625SLionel Sambuc 117484d9c625SLionel Sambuc /* The size of `short', as computed by sizeof. */ 117584d9c625SLionel Sambuc /* #undef SIZEOF_SHORT */ 117684d9c625SLionel Sambuc 117784d9c625SLionel Sambuc /* The size of `void *', as computed by sizeof. */ 117884d9c625SLionel Sambuc /* #undef SIZEOF_VOID_P */ 117984d9c625SLionel Sambuc 118084d9c625SLionel Sambuc /* Define to 1 if you have the ANSI C header files. */ 118184d9c625SLionel Sambuc #define STDC_HEADERS 1 118284d9c625SLionel Sambuc 118384d9c625SLionel Sambuc /* Version number of package */ 118484d9c625SLionel Sambuc /* #undef _GLIBCXX_VERSION */ 118584d9c625SLionel Sambuc 1186*0a6a1f1dSLionel Sambuc /* Define if the compiler supports C++11 atomics. */ 1187*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_ATOMIC_BUILTINS */ 118884d9c625SLionel Sambuc 118984d9c625SLionel Sambuc /* Define to use concept checking code from the boost libraries. */ 119084d9c625SLionel Sambuc /* #undef _GLIBCXX_CONCEPT_CHECKS */ 119184d9c625SLionel Sambuc 1192*0a6a1f1dSLionel Sambuc /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable, 1193*0a6a1f1dSLionel Sambuc undefined for platform defaults */ 1194*0a6a1f1dSLionel Sambuc #define _GLIBCXX_FULLY_DYNAMIC_STRING 0 119584d9c625SLionel Sambuc 119684d9c625SLionel Sambuc /* Define if gthreads library is available. */ 1197*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAS_GTHREADS 1 119884d9c625SLionel Sambuc 119984d9c625SLionel Sambuc /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ 120084d9c625SLionel Sambuc #define _GLIBCXX_HOSTED 1 120184d9c625SLionel Sambuc 120284d9c625SLionel Sambuc /* Define if compatibility should be provided for -mlong-double-64. */ 120384d9c625SLionel Sambuc 120484d9c625SLionel Sambuc /* Define if ptrdiff_t is int. */ 120584d9c625SLionel Sambuc #define _GLIBCXX_PTRDIFF_T_IS_INT 1 120684d9c625SLionel Sambuc 120784d9c625SLionel Sambuc /* Define if using setrlimit to set resource limits during "make check" */ 1208*0a6a1f1dSLionel Sambuc #define _GLIBCXX_RES_LIMITS 1 120984d9c625SLionel Sambuc 121084d9c625SLionel Sambuc /* Define if size_t is unsigned int. */ 121184d9c625SLionel Sambuc #define _GLIBCXX_SIZE_T_IS_UINT 1 121284d9c625SLionel Sambuc 121384d9c625SLionel Sambuc /* Define if the compiler is configured for setjmp/longjmp exceptions. */ 121484d9c625SLionel Sambuc /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */ 121584d9c625SLionel Sambuc 1216*0a6a1f1dSLionel Sambuc /* Define to the value of the EOF integer constant. */ 1217*0a6a1f1dSLionel Sambuc #define _GLIBCXX_STDIO_EOF -1 1218*0a6a1f1dSLionel Sambuc 1219*0a6a1f1dSLionel Sambuc /* Define to the value of the SEEK_CUR integer constant. */ 1220*0a6a1f1dSLionel Sambuc #define _GLIBCXX_STDIO_SEEK_CUR 1 1221*0a6a1f1dSLionel Sambuc 1222*0a6a1f1dSLionel Sambuc /* Define to the value of the SEEK_END integer constant. */ 1223*0a6a1f1dSLionel Sambuc #define _GLIBCXX_STDIO_SEEK_END 2 122484d9c625SLionel Sambuc 122584d9c625SLionel Sambuc /* Define to use symbol versioning in the shared library. */ 122684d9c625SLionel Sambuc /* #undef _GLIBCXX_SYMVER */ 122784d9c625SLionel Sambuc 122884d9c625SLionel Sambuc /* Define to use darwin versioning in the shared library. */ 122984d9c625SLionel Sambuc /* #undef _GLIBCXX_SYMVER_DARWIN */ 123084d9c625SLionel Sambuc 123184d9c625SLionel Sambuc /* Define to use GNU versioning in the shared library. */ 123284d9c625SLionel Sambuc /* #undef _GLIBCXX_SYMVER_GNU */ 123384d9c625SLionel Sambuc 123484d9c625SLionel Sambuc /* Define to use GNU namespace versioning in the shared library. */ 123584d9c625SLionel Sambuc /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */ 123684d9c625SLionel Sambuc 1237*0a6a1f1dSLionel Sambuc /* Define to use Sun versioning in the shared library. */ 1238*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SYMVER_SUN */ 1239*0a6a1f1dSLionel Sambuc 124084d9c625SLionel Sambuc /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>, 124184d9c625SLionel Sambuc <stdio.h>, and <stdlib.h> can be used or exposed. */ 1242*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99 1 124384d9c625SLionel Sambuc 124484d9c625SLionel Sambuc /* Define if C99 functions in <complex.h> should be used in <complex>. Using 124584d9c625SLionel Sambuc compiler builtins for these functions requires corresponding C99 library 124684d9c625SLionel Sambuc functions to be present. */ 1247*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_COMPLEX 1 124884d9c625SLionel Sambuc 124984d9c625SLionel Sambuc /* Define if C99 functions in <complex.h> should be used in <tr1/complex>. 125084d9c625SLionel Sambuc Using compiler builtins for these functions requires corresponding C99 125184d9c625SLionel Sambuc library functions to be present. */ 125284d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_COMPLEX_TR1 1 125384d9c625SLionel Sambuc 125484d9c625SLionel Sambuc /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in 125584d9c625SLionel Sambuc namespace std::tr1. */ 125684d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_CTYPE_TR1 1 125784d9c625SLionel Sambuc 125884d9c625SLionel Sambuc /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in 125984d9c625SLionel Sambuc namespace std::tr1. */ 126084d9c625SLionel Sambuc /* #undef _GLIBCXX_USE_C99_FENV_TR1 */ 126184d9c625SLionel Sambuc 126284d9c625SLionel Sambuc /* Define if C99 functions in <inttypes.h> should be imported in 126384d9c625SLionel Sambuc <tr1/cinttypes> in namespace std::tr1. */ 126484d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_INTTYPES_TR1 1 126584d9c625SLionel Sambuc 126684d9c625SLionel Sambuc /* Define if wchar_t C99 functions in <inttypes.h> should be imported in 126784d9c625SLionel Sambuc <tr1/cinttypes> in namespace std::tr1. */ 126884d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1 126984d9c625SLionel Sambuc 127084d9c625SLionel Sambuc /* Define if C99 functions or macros in <math.h> should be imported in <cmath> 127184d9c625SLionel Sambuc in namespace std. */ 127284d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_MATH 1 127384d9c625SLionel Sambuc 127484d9c625SLionel Sambuc /* Define if C99 functions or macros in <math.h> should be imported in 127584d9c625SLionel Sambuc <tr1/cmath> in namespace std::tr1. */ 127684d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_MATH_TR1 1 127784d9c625SLionel Sambuc 127884d9c625SLionel Sambuc /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in 127984d9c625SLionel Sambuc namespace std::tr1. */ 128084d9c625SLionel Sambuc #define _GLIBCXX_USE_C99_STDINT_TR1 1 128184d9c625SLionel Sambuc 128284d9c625SLionel Sambuc /* Defined if clock_gettime has monotonic clock support. */ 1283*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_CLOCK_MONOTONIC 1 1284*0a6a1f1dSLionel Sambuc 1285*0a6a1f1dSLionel Sambuc /* Defined if clock_gettime syscall has monotonic and realtime clock support. */ 1286*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */ 128784d9c625SLionel Sambuc 128884d9c625SLionel Sambuc /* Defined if clock_gettime has realtime clock support. */ 1289*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_CLOCK_REALTIME 1 129084d9c625SLionel Sambuc 129184d9c625SLionel Sambuc /* Define if ISO/IEC TR 24733 decimal floating point types are supported on 129284d9c625SLionel Sambuc this host. */ 129384d9c625SLionel Sambuc /* #undef _GLIBCXX_USE_DECIMAL_FLOAT */ 129484d9c625SLionel Sambuc 1295*0a6a1f1dSLionel Sambuc /* Define if __float128 is supported on this host. */ 1296*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_FLOAT128 */ 1297*0a6a1f1dSLionel Sambuc 129884d9c625SLionel Sambuc /* Defined if gettimeofday is available. */ 129984d9c625SLionel Sambuc #define _GLIBCXX_USE_GETTIMEOFDAY 1 130084d9c625SLionel Sambuc 1301*0a6a1f1dSLionel Sambuc /* Define if get_nprocs is available in <sys/sysinfo.h>. */ 1302*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_GET_NPROCS */ 1303*0a6a1f1dSLionel Sambuc 1304*0a6a1f1dSLionel Sambuc /* Define if __int128 is supported on this host. */ 1305*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_INT128 */ 1306*0a6a1f1dSLionel Sambuc 130784d9c625SLionel Sambuc /* Define if LFS support is available. */ 130884d9c625SLionel Sambuc /* #undef _GLIBCXX_USE_LFS */ 130984d9c625SLionel Sambuc 131084d9c625SLionel Sambuc /* Define if code specialized for long long should be used. */ 131184d9c625SLionel Sambuc #define _GLIBCXX_USE_LONG_LONG 1 131284d9c625SLionel Sambuc 131384d9c625SLionel Sambuc /* Defined if nanosleep is available. */ 1314*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_NANOSLEEP 1 131584d9c625SLionel Sambuc 131684d9c625SLionel Sambuc /* Define if NLS translations are to be used. */ 131784d9c625SLionel Sambuc /* #undef _GLIBCXX_USE_NLS */ 131884d9c625SLionel Sambuc 1319*0a6a1f1dSLionel Sambuc /* Define if pthreads_num_processors_np is available in <pthread.h>. */ 1320*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */ 1321*0a6a1f1dSLionel Sambuc 132284d9c625SLionel Sambuc /* Define if /dev/random and /dev/urandom are available for the random_device 132384d9c625SLionel Sambuc of TR1 (Chapter 5.1). */ 1324*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_RANDOM_TR1 1 132584d9c625SLionel Sambuc 132684d9c625SLionel Sambuc /* Defined if sched_yield is available. */ 1327*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_SCHED_YIELD 1 1328*0a6a1f1dSLionel Sambuc 1329*0a6a1f1dSLionel Sambuc /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */ 1330*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1 1331*0a6a1f1dSLionel Sambuc 1332*0a6a1f1dSLionel Sambuc /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */ 1333*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */ 1334*0a6a1f1dSLionel Sambuc 1335*0a6a1f1dSLionel Sambuc /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */ 1336*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_SYSCTL_HW_NCPU 1 133784d9c625SLionel Sambuc 133884d9c625SLionel Sambuc /* Define if code specialized for wchar_t should be used. */ 133984d9c625SLionel Sambuc #define _GLIBCXX_USE_WCHAR_T 1 134084d9c625SLionel Sambuc 1341*0a6a1f1dSLionel Sambuc /* Define to 1 if a verbose library is built, or 0 otherwise. */ 1342*0a6a1f1dSLionel Sambuc #define _GLIBCXX_VERBOSE 1 1343*0a6a1f1dSLionel Sambuc 1344*0a6a1f1dSLionel Sambuc /* Defined if as can handle rdrand. */ 1345*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_X86_RDRAND */ 1346*0a6a1f1dSLionel Sambuc 1347*0a6a1f1dSLionel Sambuc /* Define to 1 if mutex_timedlock is available. */ 1348*0a6a1f1dSLionel Sambuc #define _GTHREAD_USE_MUTEX_TIMEDLOCK 0 1349*0a6a1f1dSLionel Sambuc 135084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) 135184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ACOSF 1 135284d9c625SLionel Sambuc # define acosf _acosf 135384d9c625SLionel Sambuc #endif 135484d9c625SLionel Sambuc 135584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) 135684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ACOSL 1 135784d9c625SLionel Sambuc # define acosl _acosl 135884d9c625SLionel Sambuc #endif 135984d9c625SLionel Sambuc 136084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) 136184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ASINF 1 136284d9c625SLionel Sambuc # define asinf _asinf 136384d9c625SLionel Sambuc #endif 136484d9c625SLionel Sambuc 136584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) 136684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ASINL 1 136784d9c625SLionel Sambuc # define asinl _asinl 136884d9c625SLionel Sambuc #endif 136984d9c625SLionel Sambuc 137084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F) 137184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ATAN2F 1 137284d9c625SLionel Sambuc # define atan2f _atan2f 137384d9c625SLionel Sambuc #endif 137484d9c625SLionel Sambuc 137584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L) 137684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ATAN2L 1 137784d9c625SLionel Sambuc # define atan2l _atan2l 137884d9c625SLionel Sambuc #endif 137984d9c625SLionel Sambuc 138084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) 138184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ATANF 1 138284d9c625SLionel Sambuc # define atanf _atanf 138384d9c625SLionel Sambuc #endif 138484d9c625SLionel Sambuc 138584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) 138684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ATANL 1 138784d9c625SLionel Sambuc # define atanl _atanl 138884d9c625SLionel Sambuc #endif 138984d9c625SLionel Sambuc 139084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) 139184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_CEILF 1 139284d9c625SLionel Sambuc # define ceilf _ceilf 139384d9c625SLionel Sambuc #endif 139484d9c625SLionel Sambuc 139584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) 139684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_CEILL 1 139784d9c625SLionel Sambuc # define ceill _ceill 139884d9c625SLionel Sambuc #endif 139984d9c625SLionel Sambuc 140084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) 140184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_COSF 1 140284d9c625SLionel Sambuc # define cosf _cosf 140384d9c625SLionel Sambuc #endif 140484d9c625SLionel Sambuc 140584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) 140684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_COSHF 1 140784d9c625SLionel Sambuc # define coshf _coshf 140884d9c625SLionel Sambuc #endif 140984d9c625SLionel Sambuc 141084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) 141184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_COSHL 1 141284d9c625SLionel Sambuc # define coshl _coshl 141384d9c625SLionel Sambuc #endif 141484d9c625SLionel Sambuc 141584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) 141684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_COSL 1 141784d9c625SLionel Sambuc # define cosl _cosl 141884d9c625SLionel Sambuc #endif 141984d9c625SLionel Sambuc 142084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) 142184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_EXPF 1 142284d9c625SLionel Sambuc # define expf _expf 142384d9c625SLionel Sambuc #endif 142484d9c625SLionel Sambuc 142584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) 142684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_EXPL 1 142784d9c625SLionel Sambuc # define expl _expl 142884d9c625SLionel Sambuc #endif 142984d9c625SLionel Sambuc 143084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) 143184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FABSF 1 143284d9c625SLionel Sambuc # define fabsf _fabsf 143384d9c625SLionel Sambuc #endif 143484d9c625SLionel Sambuc 143584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) 143684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FABSL 1 143784d9c625SLionel Sambuc # define fabsl _fabsl 143884d9c625SLionel Sambuc #endif 143984d9c625SLionel Sambuc 144084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) 144184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FINITE 1 144284d9c625SLionel Sambuc # define finite _finite 144384d9c625SLionel Sambuc #endif 144484d9c625SLionel Sambuc 144584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) 144684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FINITEF 1 144784d9c625SLionel Sambuc # define finitef _finitef 144884d9c625SLionel Sambuc #endif 144984d9c625SLionel Sambuc 145084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) 145184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FINITEL 1 145284d9c625SLionel Sambuc # define finitel _finitel 145384d9c625SLionel Sambuc #endif 145484d9c625SLionel Sambuc 145584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) 145684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FLOORF 1 145784d9c625SLionel Sambuc # define floorf _floorf 145884d9c625SLionel Sambuc #endif 145984d9c625SLionel Sambuc 146084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) 146184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FLOORL 1 146284d9c625SLionel Sambuc # define floorl _floorl 146384d9c625SLionel Sambuc #endif 146484d9c625SLionel Sambuc 146584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) 146684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FMODF 1 146784d9c625SLionel Sambuc # define fmodf _fmodf 146884d9c625SLionel Sambuc #endif 146984d9c625SLionel Sambuc 147084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) 147184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FMODL 1 147284d9c625SLionel Sambuc # define fmodl _fmodl 147384d9c625SLionel Sambuc #endif 147484d9c625SLionel Sambuc 147584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) 147684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FPCLASS 1 147784d9c625SLionel Sambuc # define fpclass _fpclass 147884d9c625SLionel Sambuc #endif 147984d9c625SLionel Sambuc 148084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) 148184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FREXPF 1 148284d9c625SLionel Sambuc # define frexpf _frexpf 148384d9c625SLionel Sambuc #endif 148484d9c625SLionel Sambuc 148584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) 148684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_FREXPL 1 148784d9c625SLionel Sambuc # define frexpl _frexpl 148884d9c625SLionel Sambuc #endif 148984d9c625SLionel Sambuc 149084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT) 149184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_HYPOT 1 149284d9c625SLionel Sambuc # define hypot _hypot 149384d9c625SLionel Sambuc #endif 149484d9c625SLionel Sambuc 149584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF) 149684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_HYPOTF 1 149784d9c625SLionel Sambuc # define hypotf _hypotf 149884d9c625SLionel Sambuc #endif 149984d9c625SLionel Sambuc 150084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL) 150184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_HYPOTL 1 150284d9c625SLionel Sambuc # define hypotl _hypotl 150384d9c625SLionel Sambuc #endif 150484d9c625SLionel Sambuc 150584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) 150684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ISINF 1 150784d9c625SLionel Sambuc # define isinf _isinf 150884d9c625SLionel Sambuc #endif 150984d9c625SLionel Sambuc 151084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) 151184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ISINFF 1 151284d9c625SLionel Sambuc # define isinff _isinff 151384d9c625SLionel Sambuc #endif 151484d9c625SLionel Sambuc 151584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) 151684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ISINFL 1 151784d9c625SLionel Sambuc # define isinfl _isinfl 151884d9c625SLionel Sambuc #endif 151984d9c625SLionel Sambuc 152084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) 152184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ISNAN 1 152284d9c625SLionel Sambuc # define isnan _isnan 152384d9c625SLionel Sambuc #endif 152484d9c625SLionel Sambuc 152584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) 152684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ISNANF 1 152784d9c625SLionel Sambuc # define isnanf _isnanf 152884d9c625SLionel Sambuc #endif 152984d9c625SLionel Sambuc 153084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) 153184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_ISNANL 1 153284d9c625SLionel Sambuc # define isnanl _isnanl 153384d9c625SLionel Sambuc #endif 153484d9c625SLionel Sambuc 153584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) 153684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_LDEXPF 1 153784d9c625SLionel Sambuc # define ldexpf _ldexpf 153884d9c625SLionel Sambuc #endif 153984d9c625SLionel Sambuc 154084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) 154184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_LDEXPL 1 154284d9c625SLionel Sambuc # define ldexpl _ldexpl 154384d9c625SLionel Sambuc #endif 154484d9c625SLionel Sambuc 154584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) 154684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_LOG10F 1 154784d9c625SLionel Sambuc # define log10f _log10f 154884d9c625SLionel Sambuc #endif 154984d9c625SLionel Sambuc 155084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) 155184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_LOG10L 1 155284d9c625SLionel Sambuc # define log10l _log10l 155384d9c625SLionel Sambuc #endif 155484d9c625SLionel Sambuc 155584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) 155684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_LOGF 1 155784d9c625SLionel Sambuc # define logf _logf 155884d9c625SLionel Sambuc #endif 155984d9c625SLionel Sambuc 156084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) 156184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_LOGL 1 156284d9c625SLionel Sambuc # define logl _logl 156384d9c625SLionel Sambuc #endif 156484d9c625SLionel Sambuc 156584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) 156684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_MODF 1 156784d9c625SLionel Sambuc # define modf _modf 156884d9c625SLionel Sambuc #endif 156984d9c625SLionel Sambuc 157084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF) 157184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_MODFF 1 157284d9c625SLionel Sambuc # define modff _modff 157384d9c625SLionel Sambuc #endif 157484d9c625SLionel Sambuc 157584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL) 157684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_MODFL 1 157784d9c625SLionel Sambuc # define modfl _modfl 157884d9c625SLionel Sambuc #endif 157984d9c625SLionel Sambuc 158084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) 158184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_POWF 1 158284d9c625SLionel Sambuc # define powf _powf 158384d9c625SLionel Sambuc #endif 158484d9c625SLionel Sambuc 158584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) 158684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_POWL 1 158784d9c625SLionel Sambuc # define powl _powl 158884d9c625SLionel Sambuc #endif 158984d9c625SLionel Sambuc 159084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) 159184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_QFPCLASS 1 159284d9c625SLionel Sambuc # define qfpclass _qfpclass 159384d9c625SLionel Sambuc #endif 159484d9c625SLionel Sambuc 159584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) 159684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINCOS 1 159784d9c625SLionel Sambuc # define sincos _sincos 159884d9c625SLionel Sambuc #endif 159984d9c625SLionel Sambuc 160084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) 160184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINCOSF 1 160284d9c625SLionel Sambuc # define sincosf _sincosf 160384d9c625SLionel Sambuc #endif 160484d9c625SLionel Sambuc 160584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) 160684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINCOSL 1 160784d9c625SLionel Sambuc # define sincosl _sincosl 160884d9c625SLionel Sambuc #endif 160984d9c625SLionel Sambuc 161084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) 161184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINF 1 161284d9c625SLionel Sambuc # define sinf _sinf 161384d9c625SLionel Sambuc #endif 161484d9c625SLionel Sambuc 161584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) 161684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINHF 1 161784d9c625SLionel Sambuc # define sinhf _sinhf 161884d9c625SLionel Sambuc #endif 161984d9c625SLionel Sambuc 162084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) 162184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINHL 1 162284d9c625SLionel Sambuc # define sinhl _sinhl 162384d9c625SLionel Sambuc #endif 162484d9c625SLionel Sambuc 162584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) 162684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SINL 1 162784d9c625SLionel Sambuc # define sinl _sinl 162884d9c625SLionel Sambuc #endif 162984d9c625SLionel Sambuc 163084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) 163184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SQRTF 1 163284d9c625SLionel Sambuc # define sqrtf _sqrtf 163384d9c625SLionel Sambuc #endif 163484d9c625SLionel Sambuc 163584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) 163684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_SQRTL 1 163784d9c625SLionel Sambuc # define sqrtl _sqrtl 163884d9c625SLionel Sambuc #endif 163984d9c625SLionel Sambuc 164084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) 164184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_STRTOF 1 164284d9c625SLionel Sambuc # define strtof _strtof 164384d9c625SLionel Sambuc #endif 164484d9c625SLionel Sambuc 164584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) 164684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_STRTOLD 1 164784d9c625SLionel Sambuc # define strtold _strtold 164884d9c625SLionel Sambuc #endif 164984d9c625SLionel Sambuc 165084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) 165184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_TANF 1 165284d9c625SLionel Sambuc # define tanf _tanf 165384d9c625SLionel Sambuc #endif 165484d9c625SLionel Sambuc 165584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) 165684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_TANHF 1 165784d9c625SLionel Sambuc # define tanhf _tanhf 165884d9c625SLionel Sambuc #endif 165984d9c625SLionel Sambuc 166084d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) 166184d9c625SLionel Sambuc # define _GLIBCXX_HAVE_TANHL 1 166284d9c625SLionel Sambuc # define tanhl _tanhl 166384d9c625SLionel Sambuc #endif 166484d9c625SLionel Sambuc 166584d9c625SLionel Sambuc #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) 166684d9c625SLionel Sambuc # define _GLIBCXX_HAVE_TANL 1 166784d9c625SLionel Sambuc # define tanl _tanl 166884d9c625SLionel Sambuc #endif 166984d9c625SLionel Sambuc 167084d9c625SLionel Sambuc #endif // _GLIBCXX_CXX_CONFIG_H 1671