1*0a6a1f1dSLionel 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 */ 4*0a6a1f1dSLionel Sambuc 5*0a6a1f1dSLionel Sambuc // Predefined symbols and macros -*- C++ -*- 6*0a6a1f1dSLionel Sambuc 7*0a6a1f1dSLionel Sambuc // Copyright (C) 1997-2013 Free Software Foundation, Inc. 8*0a6a1f1dSLionel Sambuc // 9*0a6a1f1dSLionel Sambuc // This file is part of the GNU ISO C++ Library. This library is free 10*0a6a1f1dSLionel Sambuc // software; you can redistribute it and/or modify it under the 11*0a6a1f1dSLionel Sambuc // terms of the GNU General Public License as published by the 12*0a6a1f1dSLionel Sambuc // Free Software Foundation; either version 3, or (at your option) 13*0a6a1f1dSLionel Sambuc // any later version. 14*0a6a1f1dSLionel Sambuc 15*0a6a1f1dSLionel Sambuc // This library is distributed in the hope that it will be useful, 16*0a6a1f1dSLionel Sambuc // but WITHOUT ANY WARRANTY; without even the implied warranty of 17*0a6a1f1dSLionel Sambuc // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*0a6a1f1dSLionel Sambuc // GNU General Public License for more details. 19*0a6a1f1dSLionel Sambuc 20*0a6a1f1dSLionel Sambuc // Under Section 7 of GPL version 3, you are granted additional 21*0a6a1f1dSLionel Sambuc // permissions described in the GCC Runtime Library Exception, version 22*0a6a1f1dSLionel Sambuc // 3.1, as published by the Free Software Foundation. 23*0a6a1f1dSLionel Sambuc 24*0a6a1f1dSLionel Sambuc // You should have received a copy of the GNU General Public License and 25*0a6a1f1dSLionel Sambuc // a copy of the GCC Runtime Library Exception along with this program; 26*0a6a1f1dSLionel Sambuc // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 27*0a6a1f1dSLionel Sambuc // <http://www.gnu.org/licenses/>. 28*0a6a1f1dSLionel Sambuc 29*0a6a1f1dSLionel Sambuc /** @file bits/c++config.h 30*0a6a1f1dSLionel Sambuc * This is an internal header file, included by other library headers. 31*0a6a1f1dSLionel Sambuc * Do not attempt to use it directly. @headername{iosfwd} 32*0a6a1f1dSLionel Sambuc */ 33*0a6a1f1dSLionel Sambuc 34*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_CXX_CONFIG_H 35*0a6a1f1dSLionel Sambuc #define _GLIBCXX_CXX_CONFIG_H 1 36*0a6a1f1dSLionel Sambuc 37*0a6a1f1dSLionel Sambuc // The current version of the C++ library in compressed ISO date format. 38*0a6a1f1dSLionel Sambuc #define __GLIBCXX__ 20141219 39*0a6a1f1dSLionel 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. 66*0a6a1f1dSLionel Sambuc // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 67*0a6a1f1dSLionel Sambuc // _GLIBCXX_VISIBILITY 68*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1 69*0a6a1f1dSLionel Sambuc 70*0a6a1f1dSLionel Sambuc #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 71*0a6a1f1dSLionel Sambuc # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V))) 72*0a6a1f1dSLionel Sambuc #else 73*0a6a1f1dSLionel Sambuc // If this is not supplied by the OS-specific or CPU-specific 74*0a6a1f1dSLionel Sambuc // headers included below, it will be defined to an empty default. 75*0a6a1f1dSLionel Sambuc # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V) 76*0a6a1f1dSLionel Sambuc #endif 77*0a6a1f1dSLionel Sambuc 78*0a6a1f1dSLionel Sambuc // Macros for deprecated attributes. 79*0a6a1f1dSLionel Sambuc // _GLIBCXX_USE_DEPRECATED 80*0a6a1f1dSLionel Sambuc // _GLIBCXX_DEPRECATED 81*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_USE_DEPRECATED 82*0a6a1f1dSLionel Sambuc # define _GLIBCXX_USE_DEPRECATED 1 83*0a6a1f1dSLionel Sambuc #endif 84*0a6a1f1dSLionel Sambuc 85*0a6a1f1dSLionel Sambuc #if defined(__DEPRECATED) && (__cplusplus >= 201103L) 86*0a6a1f1dSLionel Sambuc # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__)) 87*0a6a1f1dSLionel Sambuc #else 88*0a6a1f1dSLionel Sambuc # define _GLIBCXX_DEPRECATED 89*0a6a1f1dSLionel Sambuc #endif 90*0a6a1f1dSLionel 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 95*0a6a1f1dSLionel 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 147*0a6a1f1dSLionel Sambuc /* 148*0a6a1f1dSLionel Sambuc Outline of libstdc++ namespaces. 149*0a6a1f1dSLionel Sambuc 150*0a6a1f1dSLionel Sambuc namespace std 151*0a6a1f1dSLionel Sambuc { 152*0a6a1f1dSLionel Sambuc namespace __debug { } 153*0a6a1f1dSLionel Sambuc namespace __parallel { } 154*0a6a1f1dSLionel Sambuc namespace __profile { } 155*0a6a1f1dSLionel Sambuc namespace __cxx1998 { } 156*0a6a1f1dSLionel 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 { } 166*0a6a1f1dSLionel 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 187*0a6a1f1dSLionel Sambuc */ 188*0a6a1f1dSLionel Sambuc namespace std 189*0a6a1f1dSLionel 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 196*0a6a1f1dSLionel Sambuc } 197*0a6a1f1dSLionel 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 205*0a6a1f1dSLionel Sambuc namespace std 206*0a6a1f1dSLionel 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 { } } 217*0a6a1f1dSLionel Sambuc } 218*0a6a1f1dSLionel Sambuc 219*0a6a1f1dSLionel Sambuc namespace tr2 220*0a6a1f1dSLionel Sambuc { inline namespace __7 { } } 221*0a6a1f1dSLionel 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 { } } 230*0a6a1f1dSLionel Sambuc } 231*0a6a1f1dSLionel Sambuc 232*0a6a1f1dSLionel Sambuc namespace __gnu_cxx 233*0a6a1f1dSLionel Sambuc { 234*0a6a1f1dSLionel Sambuc inline namespace __7 { } 235*0a6a1f1dSLionel Sambuc namespace __detail { inline namespace __7 { } } 236*0a6a1f1dSLionel 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 242*0a6a1f1dSLionel Sambuc #endif 243*0a6a1f1dSLionel 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. 346*0a6a1f1dSLionel Sambuc #undef _GLIBCXX_LONG_DOUBLE_COMPAT 347*0a6a1f1dSLionel Sambuc 348*0a6a1f1dSLionel Sambuc // Inline namespace for long double 128 mode. 349*0a6a1f1dSLionel Sambuc #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__ 350*0a6a1f1dSLionel Sambuc namespace std 351*0a6a1f1dSLionel Sambuc { 352*0a6a1f1dSLionel Sambuc inline namespace __gnu_cxx_ldbl128 { } 353*0a6a1f1dSLionel 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 } 357*0a6a1f1dSLionel 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 361*0a6a1f1dSLionel Sambuc #endif 362*0a6a1f1dSLionel 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 388*0a6a1f1dSLionel 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++. 418*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_EXTERN_C extern "C" { 419*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_EXTERN_C } 420*0a6a1f1dSLionel Sambuc 421*0a6a1f1dSLionel Sambuc #else // !__cplusplus 422*0a6a1f1dSLionel Sambuc # define _GLIBCXX_BEGIN_EXTERN_C 423*0a6a1f1dSLionel Sambuc # define _GLIBCXX_END_EXTERN_C 424*0a6a1f1dSLionel Sambuc #endif 425*0a6a1f1dSLionel Sambuc 426*0a6a1f1dSLionel Sambuc 427*0a6a1f1dSLionel Sambuc // First includes. 428*0a6a1f1dSLionel Sambuc 429*0a6a1f1dSLionel Sambuc // Pick up any OS-specific definitions. 430*0a6a1f1dSLionel Sambuc #include <bits/os_defines.h> 431*0a6a1f1dSLionel Sambuc 432*0a6a1f1dSLionel Sambuc // Pick up any CPU-specific definitions. 433*0a6a1f1dSLionel Sambuc #include <bits/cpu_defines.h> 434*0a6a1f1dSLionel Sambuc 435*0a6a1f1dSLionel Sambuc // If platform uses neither visibility nor psuedo-visibility, 436*0a6a1f1dSLionel Sambuc // specify empty default for namespace annotation macros. 437*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_PSEUDO_VISIBILITY 438*0a6a1f1dSLionel Sambuc # define _GLIBCXX_PSEUDO_VISIBILITY(V) 439*0a6a1f1dSLionel Sambuc #endif 440*0a6a1f1dSLionel Sambuc 441*0a6a1f1dSLionel Sambuc // Certain function definitions that are meant to be overridable from 442*0a6a1f1dSLionel Sambuc // user code are decorated with this macro. For some targets, this 443*0a6a1f1dSLionel Sambuc // macro causes these definitions to be weak. 444*0a6a1f1dSLionel Sambuc #ifndef _GLIBCXX_WEAK_DEFINITION 445*0a6a1f1dSLionel Sambuc # define _GLIBCXX_WEAK_DEFINITION 446*0a6a1f1dSLionel Sambuc #endif 447*0a6a1f1dSLionel Sambuc 448*0a6a1f1dSLionel Sambuc 449*0a6a1f1dSLionel Sambuc // The remainder of the prewritten config is automatic; all the 450*0a6a1f1dSLionel Sambuc // user hooks are listed above. 451*0a6a1f1dSLionel Sambuc 452*0a6a1f1dSLionel Sambuc // Create a boolean flag to be used to determine if --fast-math is set. 453*0a6a1f1dSLionel Sambuc #ifdef __FAST_MATH__ 454*0a6a1f1dSLionel Sambuc # define _GLIBCXX_FAST_MATH 1 455*0a6a1f1dSLionel Sambuc #else 456*0a6a1f1dSLionel Sambuc # define _GLIBCXX_FAST_MATH 0 457*0a6a1f1dSLionel Sambuc #endif 458*0a6a1f1dSLionel Sambuc 459*0a6a1f1dSLionel Sambuc // This marks string literals in header files to be extracted for eventual 460*0a6a1f1dSLionel Sambuc // translation. It is primarily used for messages in thrown exceptions; see 461*0a6a1f1dSLionel Sambuc // src/functexcept.cc. We use __N because the more traditional _N is used 462*0a6a1f1dSLionel Sambuc // for something else under certain OSes (see BADNAMES). 463*0a6a1f1dSLionel Sambuc #define __N(msgid) (msgid) 464*0a6a1f1dSLionel Sambuc 465*0a6a1f1dSLionel Sambuc // For example, <windows.h> is known to #define min and max as macros... 466*0a6a1f1dSLionel Sambuc #undef min 467*0a6a1f1dSLionel Sambuc #undef max 468*0a6a1f1dSLionel Sambuc 469*0a6a1f1dSLionel Sambuc // End of prewritten config; the settings discovered at configure time follow. 470*0a6a1f1dSLionel Sambuc /* config.h. Generated from config.h.in by configure. */ 471*0a6a1f1dSLionel Sambuc /* config.h.in. Generated from configure.ac by autoheader. */ 472*0a6a1f1dSLionel Sambuc 473*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `acosf' function. */ 474*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ACOSF 1 475*0a6a1f1dSLionel Sambuc 476*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `acosl' function. */ 477*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ACOSL 1 478*0a6a1f1dSLionel Sambuc 479*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `asinf' function. */ 480*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ASINF 1 481*0a6a1f1dSLionel Sambuc 482*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `asinl' function. */ 483*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ASINL 1 484*0a6a1f1dSLionel Sambuc 485*0a6a1f1dSLionel Sambuc /* Define to 1 if the target assembler supports .symver directive. */ 486*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1 487*0a6a1f1dSLionel Sambuc 488*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `atan2f' function. */ 489*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATAN2F 1 490*0a6a1f1dSLionel Sambuc 491*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `atan2l' function. */ 492*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATAN2L 1 493*0a6a1f1dSLionel Sambuc 494*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `atanf' function. */ 495*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ATANF 1 496*0a6a1f1dSLionel Sambuc 497*0a6a1f1dSLionel 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 502*0a6a1f1dSLionel Sambuc 503*0a6a1f1dSLionel Sambuc /* Define to 1 if the target assembler supports thread-local storage. */ 504*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_CC_TLS */ 505*0a6a1f1dSLionel Sambuc 506*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `ceilf' function. */ 507*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_CEILF 1 508*0a6a1f1dSLionel Sambuc 509*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `ceill' function. */ 510*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_CEILL 1 511*0a6a1f1dSLionel Sambuc 512*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <complex.h> header file. */ 513*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COMPLEX_H 1 514*0a6a1f1dSLionel Sambuc 515*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `cosf' function. */ 516*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSF 1 517*0a6a1f1dSLionel Sambuc 518*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `coshf' function. */ 519*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSHF 1 520*0a6a1f1dSLionel Sambuc 521*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `coshl' function. */ 522*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSHL 1 523*0a6a1f1dSLionel Sambuc 524*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `cosl' function. */ 525*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_COSL 1 526*0a6a1f1dSLionel Sambuc 527*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <dlfcn.h> header file. */ 528*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_DLFCN_H 1 529*0a6a1f1dSLionel Sambuc 530*0a6a1f1dSLionel Sambuc /* Define if EBADMSG exists. */ 531*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EBADMSG 1 532*0a6a1f1dSLionel Sambuc 533*0a6a1f1dSLionel Sambuc /* Define if ECANCELED exists. */ 534*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ECANCELED 1 535*0a6a1f1dSLionel Sambuc 536*0a6a1f1dSLionel Sambuc /* Define if ECHILD exists. */ 537*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ECHILD 1 538*0a6a1f1dSLionel Sambuc 539*0a6a1f1dSLionel Sambuc /* Define if EIDRM exists. */ 540*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EIDRM 1 541*0a6a1f1dSLionel Sambuc 542*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <endian.h> header file. */ 543*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_ENDIAN_H */ 544*0a6a1f1dSLionel Sambuc 545*0a6a1f1dSLionel Sambuc /* Define if ENODATA exists. */ 546*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENODATA 1 547*0a6a1f1dSLionel Sambuc 548*0a6a1f1dSLionel Sambuc /* Define if ENOLINK exists. */ 549*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENOLINK 1 550*0a6a1f1dSLionel Sambuc 551*0a6a1f1dSLionel Sambuc /* Define if ENOSPC exists. */ 552*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENOSPC 1 553*0a6a1f1dSLionel Sambuc 554*0a6a1f1dSLionel Sambuc /* Define if ENOSR exists. */ 555*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENOSR 1 556*0a6a1f1dSLionel Sambuc 557*0a6a1f1dSLionel Sambuc /* Define if ENOSTR exists. */ 558*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENOSTR 1 559*0a6a1f1dSLionel Sambuc 560*0a6a1f1dSLionel Sambuc /* Define if ENOTRECOVERABLE exists. */ 561*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_ENOTRECOVERABLE */ 562*0a6a1f1dSLionel Sambuc 563*0a6a1f1dSLionel Sambuc /* Define if ENOTSUP exists. */ 564*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ENOTSUP 1 565*0a6a1f1dSLionel Sambuc 566*0a6a1f1dSLionel Sambuc /* Define if EOVERFLOW exists. */ 567*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EOVERFLOW 1 568*0a6a1f1dSLionel Sambuc 569*0a6a1f1dSLionel Sambuc /* Define if EOWNERDEAD exists. */ 570*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_EOWNERDEAD */ 571*0a6a1f1dSLionel Sambuc 572*0a6a1f1dSLionel Sambuc /* Define if EPERM exists. */ 573*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EPERM 1 574*0a6a1f1dSLionel Sambuc 575*0a6a1f1dSLionel Sambuc /* Define if EPROTO exists. */ 576*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EPROTO 1 577*0a6a1f1dSLionel Sambuc 578*0a6a1f1dSLionel Sambuc /* Define if ETIME exists. */ 579*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ETIME 1 580*0a6a1f1dSLionel Sambuc 581*0a6a1f1dSLionel Sambuc /* Define if ETIMEDOUT exists. */ 582*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ETIMEDOUT 1 583*0a6a1f1dSLionel Sambuc 584*0a6a1f1dSLionel Sambuc /* Define if ETXTBSY exists. */ 585*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ETXTBSY 1 586*0a6a1f1dSLionel Sambuc 587*0a6a1f1dSLionel Sambuc /* Define if EWOULDBLOCK exists. */ 588*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EWOULDBLOCK 1 589*0a6a1f1dSLionel Sambuc 590*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <execinfo.h> header file. */ 591*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EXECINFO_H 1 592*0a6a1f1dSLionel Sambuc 593*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `expf' function. */ 594*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EXPF 1 595*0a6a1f1dSLionel Sambuc 596*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `expl' function. */ 597*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_EXPL 1 598*0a6a1f1dSLionel Sambuc 599*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `fabsf' function. */ 600*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FABSF 1 601*0a6a1f1dSLionel Sambuc 602*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `fabsl' function. */ 603*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FABSL 1 604*0a6a1f1dSLionel Sambuc 605*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <fenv.h> header file. */ 606*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FENV_H 1 607*0a6a1f1dSLionel Sambuc 608*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `finite' function. */ 609*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FINITE 1 610*0a6a1f1dSLionel Sambuc 611*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `finitef' function. */ 612*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FINITEF 1 613*0a6a1f1dSLionel Sambuc 614*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `finitel' function. */ 615*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_FINITEL */ 616*0a6a1f1dSLionel Sambuc 617*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <float.h> header file. */ 618*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FLOAT_H 1 619*0a6a1f1dSLionel Sambuc 620*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `floorf' function. */ 621*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FLOORF 1 622*0a6a1f1dSLionel Sambuc 623*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `floorl' function. */ 624*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FLOORL 1 625*0a6a1f1dSLionel Sambuc 626*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `fmodf' function. */ 627*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FMODF 1 628*0a6a1f1dSLionel Sambuc 629*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `fmodl' function. */ 630*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FMODL 1 631*0a6a1f1dSLionel Sambuc 632*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `fpclass' function. */ 633*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_FPCLASS */ 634*0a6a1f1dSLionel Sambuc 635*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <fp.h> header file. */ 636*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_FP_H */ 637*0a6a1f1dSLionel Sambuc 638*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `frexpf' function. */ 639*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_FREXPF 1 640*0a6a1f1dSLionel Sambuc 641*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `frexpl' function. */ 642*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_FREXPL */ 643*0a6a1f1dSLionel Sambuc 644*0a6a1f1dSLionel Sambuc /* Define if _Unwind_GetIPInfo is available. */ 645*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_GETIPINFO 1 646*0a6a1f1dSLionel Sambuc 647*0a6a1f1dSLionel Sambuc /* Define if gets is available in <stdio.h>. */ 648*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_GETS 1 649*0a6a1f1dSLionel Sambuc 650*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `hypot' function. */ 651*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_HYPOT 1 652*0a6a1f1dSLionel Sambuc 653*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `hypotf' function. */ 654*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_HYPOTF 1 655*0a6a1f1dSLionel Sambuc 656*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `hypotl' function. */ 657*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_HYPOTL 1 658*0a6a1f1dSLionel Sambuc 659*0a6a1f1dSLionel Sambuc /* Define if you have the iconv() function. */ 660*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ICONV 1 661*0a6a1f1dSLionel Sambuc 662*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <ieeefp.h> header file. */ 663*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_IEEEFP_H 1 664*0a6a1f1dSLionel Sambuc 665*0a6a1f1dSLionel Sambuc /* Define if int64_t is available in <stdint.h>. */ 666*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_INT64_T 1 667*0a6a1f1dSLionel Sambuc 668*0a6a1f1dSLionel Sambuc /* Define if int64_t is a long. */ 669*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_INT64_T_LONG */ 670*0a6a1f1dSLionel Sambuc 671*0a6a1f1dSLionel Sambuc /* Define if int64_t is a long long. */ 672*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1 673*0a6a1f1dSLionel Sambuc 674*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <inttypes.h> header file. */ 675*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_INTTYPES_H 1 676*0a6a1f1dSLionel Sambuc 677*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `isinf' function. */ 678*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ISINF 1 679*0a6a1f1dSLionel Sambuc 680*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `isinff' function. */ 681*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ISINFF 1 682*0a6a1f1dSLionel Sambuc 683*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `isinfl' function. */ 684*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_ISINFL */ 685*0a6a1f1dSLionel Sambuc 686*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `isnan' function. */ 687*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ISNAN 1 688*0a6a1f1dSLionel Sambuc 689*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `isnanf' function. */ 690*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ISNANF 1 691*0a6a1f1dSLionel Sambuc 692*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `isnanl' function. */ 693*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_ISNANL */ 694*0a6a1f1dSLionel Sambuc 695*0a6a1f1dSLionel Sambuc /* Defined if iswblank exists. */ 696*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_ISWBLANK 1 697*0a6a1f1dSLionel Sambuc 698*0a6a1f1dSLionel Sambuc /* Define if LC_MESSAGES is available in <locale.h>. */ 699*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LC_MESSAGES 1 700*0a6a1f1dSLionel Sambuc 701*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `ldexpf' function. */ 702*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LDEXPF 1 703*0a6a1f1dSLionel Sambuc 704*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `ldexpl' function. */ 705*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_LDEXPL */ 706*0a6a1f1dSLionel Sambuc 707*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <libintl.h> header file. */ 708*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_LIBINTL_H */ 709*0a6a1f1dSLionel Sambuc 710*0a6a1f1dSLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 711*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_AS 1 712*0a6a1f1dSLionel Sambuc 713*0a6a1f1dSLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 714*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_DATA 1 715*0a6a1f1dSLionel Sambuc 716*0a6a1f1dSLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 717*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_FSIZE 1 718*0a6a1f1dSLionel Sambuc 719*0a6a1f1dSLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 720*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_RSS 1 721*0a6a1f1dSLionel Sambuc 722*0a6a1f1dSLionel Sambuc /* Only used in build directory testsuite_hooks.h. */ 723*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LIMIT_VMEM 1 724*0a6a1f1dSLionel Sambuc 725*0a6a1f1dSLionel Sambuc /* Define if futex syscall is available. */ 726*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_LINUX_FUTEX */ 727*0a6a1f1dSLionel Sambuc 728*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <locale.h> header file. */ 729*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOCALE_H 1 730*0a6a1f1dSLionel Sambuc 731*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `log10f' function. */ 732*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOG10F 1 733*0a6a1f1dSLionel Sambuc 734*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `log10l' function. */ 735*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOG10L 1 736*0a6a1f1dSLionel Sambuc 737*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `logf' function. */ 738*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOGF 1 739*0a6a1f1dSLionel Sambuc 740*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `logl' function. */ 741*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_LOGL 1 742*0a6a1f1dSLionel Sambuc 743*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <machine/endian.h> header file. */ 744*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1 745*0a6a1f1dSLionel Sambuc 746*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <machine/param.h> header file. */ 747*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1 748*0a6a1f1dSLionel Sambuc 749*0a6a1f1dSLionel Sambuc /* Define if mbstate_t exists in wchar.h. */ 750*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MBSTATE_T 1 751*0a6a1f1dSLionel Sambuc 752*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <memory.h> header file. */ 753*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MEMORY_H 1 754*0a6a1f1dSLionel Sambuc 755*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `modf' function. */ 756*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MODF 1 757*0a6a1f1dSLionel Sambuc 758*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `modff' function. */ 759*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MODFF 1 760*0a6a1f1dSLionel Sambuc 761*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `modfl' function. */ 762*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_MODFL 1 763*0a6a1f1dSLionel Sambuc 764*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <nan.h> header file. */ 765*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_NAN_H */ 766*0a6a1f1dSLionel Sambuc 767*0a6a1f1dSLionel Sambuc /* Define if poll is available in <poll.h>. */ 768*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_POLL 1 769*0a6a1f1dSLionel Sambuc 770*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `powf' function. */ 771*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_POWF 1 772*0a6a1f1dSLionel Sambuc 773*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `powl' function. */ 774*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_POWL 1 775*0a6a1f1dSLionel Sambuc 776*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `qfpclass' function. */ 777*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_QFPCLASS */ 778*0a6a1f1dSLionel 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 782*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `setenv' function. */ 783*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SETENV 1 784*0a6a1f1dSLionel Sambuc 785*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sincos' function. */ 786*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SINCOS */ 787*0a6a1f1dSLionel Sambuc 788*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sincosf' function. */ 789*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SINCOSF */ 790*0a6a1f1dSLionel Sambuc 791*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sincosl' function. */ 792*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SINCOSL */ 793*0a6a1f1dSLionel Sambuc 794*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sinf' function. */ 795*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINF 1 796*0a6a1f1dSLionel Sambuc 797*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sinhf' function. */ 798*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINHF 1 799*0a6a1f1dSLionel Sambuc 800*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sinhl' function. */ 801*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SINHL 1 802*0a6a1f1dSLionel Sambuc 803*0a6a1f1dSLionel 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 */ 808*0a6a1f1dSLionel Sambuc 809*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `sqrtf' function. */ 810*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SQRTF 1 811*0a6a1f1dSLionel Sambuc 812*0a6a1f1dSLionel 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 */ 817*0a6a1f1dSLionel Sambuc 818*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <stdbool.h> header file. */ 819*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STDBOOL_H 1 820*0a6a1f1dSLionel Sambuc 821*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <stdint.h> header file. */ 822*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STDINT_H 1 823*0a6a1f1dSLionel Sambuc 824*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <stdlib.h> header file. */ 825*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STDLIB_H 1 826*0a6a1f1dSLionel Sambuc 827*0a6a1f1dSLionel Sambuc /* Define if strerror_l is available in <string.h>. */ 828*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_STRERROR_L */ 829*0a6a1f1dSLionel Sambuc 830*0a6a1f1dSLionel Sambuc /* Define if strerror_r is available in <string.h>. */ 831*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRERROR_R 1 832*0a6a1f1dSLionel Sambuc 833*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <strings.h> header file. */ 834*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRINGS_H 1 835*0a6a1f1dSLionel Sambuc 836*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <string.h> header file. */ 837*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRING_H 1 838*0a6a1f1dSLionel Sambuc 839*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `strtof' function. */ 840*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRTOF 1 841*0a6a1f1dSLionel Sambuc 842*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `strtold' function. */ 843*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_STRTOLD 1 844*0a6a1f1dSLionel Sambuc 845*0a6a1f1dSLionel Sambuc /* Define if strxfrm_l is available in <string.h>. */ 846*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_STRXFRM_L */ 847*0a6a1f1dSLionel 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 852*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/filio.h> header file. */ 853*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_FILIO_H 1 854*0a6a1f1dSLionel Sambuc 855*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/ioctl.h> header file. */ 856*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_IOCTL_H 1 857*0a6a1f1dSLionel Sambuc 858*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/ipc.h> header file. */ 859*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_IPC_H 1 860*0a6a1f1dSLionel Sambuc 861*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/isa_defs.h> header file. */ 862*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */ 863*0a6a1f1dSLionel Sambuc 864*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/machine.h> header file. */ 865*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */ 866*0a6a1f1dSLionel Sambuc 867*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/param.h> header file. */ 868*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_PARAM_H 1 869*0a6a1f1dSLionel Sambuc 870*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/resource.h> header file. */ 871*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1 872*0a6a1f1dSLionel 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 876*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/sem.h> header file. */ 877*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_SEM_H 1 878*0a6a1f1dSLionel Sambuc 879*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/stat.h> header file. */ 880*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_STAT_H 1 881*0a6a1f1dSLionel 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 885*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/time.h> header file. */ 886*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_TIME_H 1 887*0a6a1f1dSLionel Sambuc 888*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/types.h> header file. */ 889*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_TYPES_H 1 890*0a6a1f1dSLionel Sambuc 891*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <sys/uio.h> header file. */ 892*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_SYS_UIO_H 1 893*0a6a1f1dSLionel Sambuc 894*0a6a1f1dSLionel Sambuc /* Define if S_IFREG is available in <sys/stat.h>. */ 895*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_S_IFREG */ 896*0a6a1f1dSLionel Sambuc 897*0a6a1f1dSLionel Sambuc /* Define if S_IFREG is available in <sys/stat.h>. */ 898*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_S_ISREG 1 899*0a6a1f1dSLionel Sambuc 900*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `tanf' function. */ 901*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANF 1 902*0a6a1f1dSLionel Sambuc 903*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `tanhf' function. */ 904*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANHF 1 905*0a6a1f1dSLionel Sambuc 906*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `tanhl' function. */ 907*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANHL 1 908*0a6a1f1dSLionel Sambuc 909*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `tanl' function. */ 910*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TANL 1 911*0a6a1f1dSLionel Sambuc 912*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <tgmath.h> header file. */ 913*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TGMATH_H 1 914*0a6a1f1dSLionel Sambuc 915*0a6a1f1dSLionel Sambuc /* Define to 1 if the target supports thread-local storage. */ 916*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_TLS 1 917*0a6a1f1dSLionel Sambuc 918*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <unistd.h> header file. */ 919*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_UNISTD_H 1 920*0a6a1f1dSLionel Sambuc 921*0a6a1f1dSLionel Sambuc /* Defined if usleep exists. */ 922*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_USLEEP */ 923*0a6a1f1dSLionel Sambuc 924*0a6a1f1dSLionel Sambuc /* Defined if vfwscanf exists. */ 925*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_VFWSCANF 1 926*0a6a1f1dSLionel Sambuc 927*0a6a1f1dSLionel Sambuc /* Defined if vswscanf exists. */ 928*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_VSWSCANF 1 929*0a6a1f1dSLionel Sambuc 930*0a6a1f1dSLionel Sambuc /* Defined if vwscanf exists. */ 931*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_VWSCANF 1 932*0a6a1f1dSLionel Sambuc 933*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <wchar.h> header file. */ 934*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_WCHAR_H 1 935*0a6a1f1dSLionel Sambuc 936*0a6a1f1dSLionel Sambuc /* Defined if wcstof exists. */ 937*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_WCSTOF 1 938*0a6a1f1dSLionel Sambuc 939*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the <wctype.h> header file. */ 940*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_WCTYPE_H 1 941*0a6a1f1dSLionel Sambuc 942*0a6a1f1dSLionel Sambuc /* Defined if Sleep exists. */ 943*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */ 944*0a6a1f1dSLionel Sambuc 945*0a6a1f1dSLionel Sambuc /* Define if writev is available in <sys/uio.h>. */ 946*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAVE_WRITEV 1 947*0a6a1f1dSLionel Sambuc 948*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_acosf' function. */ 949*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ACOSF */ 950*0a6a1f1dSLionel Sambuc 951*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_acosl' function. */ 952*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ACOSL */ 953*0a6a1f1dSLionel Sambuc 954*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_asinf' function. */ 955*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ASINF */ 956*0a6a1f1dSLionel Sambuc 957*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_asinl' function. */ 958*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ASINL */ 959*0a6a1f1dSLionel Sambuc 960*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_atan2f' function. */ 961*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ATAN2F */ 962*0a6a1f1dSLionel Sambuc 963*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_atan2l' function. */ 964*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ATAN2L */ 965*0a6a1f1dSLionel Sambuc 966*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_atanf' function. */ 967*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ATANF */ 968*0a6a1f1dSLionel Sambuc 969*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_atanl' function. */ 970*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ATANL */ 971*0a6a1f1dSLionel Sambuc 972*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_ceilf' function. */ 973*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__CEILF */ 974*0a6a1f1dSLionel Sambuc 975*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_ceill' function. */ 976*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__CEILL */ 977*0a6a1f1dSLionel Sambuc 978*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_cosf' function. */ 979*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__COSF */ 980*0a6a1f1dSLionel Sambuc 981*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_coshf' function. */ 982*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__COSHF */ 983*0a6a1f1dSLionel Sambuc 984*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_coshl' function. */ 985*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__COSHL */ 986*0a6a1f1dSLionel Sambuc 987*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_cosl' function. */ 988*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__COSL */ 989*0a6a1f1dSLionel Sambuc 990*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_expf' function. */ 991*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__EXPF */ 992*0a6a1f1dSLionel Sambuc 993*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_expl' function. */ 994*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__EXPL */ 995*0a6a1f1dSLionel Sambuc 996*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_fabsf' function. */ 997*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FABSF */ 998*0a6a1f1dSLionel Sambuc 999*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_fabsl' function. */ 1000*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FABSL */ 1001*0a6a1f1dSLionel Sambuc 1002*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_finite' function. */ 1003*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FINITE */ 1004*0a6a1f1dSLionel Sambuc 1005*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_finitef' function. */ 1006*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FINITEF */ 1007*0a6a1f1dSLionel Sambuc 1008*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_finitel' function. */ 1009*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FINITEL */ 1010*0a6a1f1dSLionel Sambuc 1011*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_floorf' function. */ 1012*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FLOORF */ 1013*0a6a1f1dSLionel Sambuc 1014*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_floorl' function. */ 1015*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FLOORL */ 1016*0a6a1f1dSLionel Sambuc 1017*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_fmodf' function. */ 1018*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FMODF */ 1019*0a6a1f1dSLionel Sambuc 1020*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_fmodl' function. */ 1021*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FMODL */ 1022*0a6a1f1dSLionel Sambuc 1023*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_fpclass' function. */ 1024*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FPCLASS */ 1025*0a6a1f1dSLionel Sambuc 1026*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_frexpf' function. */ 1027*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FREXPF */ 1028*0a6a1f1dSLionel Sambuc 1029*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_frexpl' function. */ 1030*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__FREXPL */ 1031*0a6a1f1dSLionel Sambuc 1032*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_hypot' function. */ 1033*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__HYPOT */ 1034*0a6a1f1dSLionel Sambuc 1035*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_hypotf' function. */ 1036*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__HYPOTF */ 1037*0a6a1f1dSLionel Sambuc 1038*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_hypotl' function. */ 1039*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__HYPOTL */ 1040*0a6a1f1dSLionel Sambuc 1041*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_isinf' function. */ 1042*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ISINF */ 1043*0a6a1f1dSLionel Sambuc 1044*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_isinff' function. */ 1045*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ISINFF */ 1046*0a6a1f1dSLionel Sambuc 1047*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_isinfl' function. */ 1048*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ISINFL */ 1049*0a6a1f1dSLionel Sambuc 1050*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_isnan' function. */ 1051*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ISNAN */ 1052*0a6a1f1dSLionel Sambuc 1053*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_isnanf' function. */ 1054*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ISNANF */ 1055*0a6a1f1dSLionel Sambuc 1056*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_isnanl' function. */ 1057*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__ISNANL */ 1058*0a6a1f1dSLionel Sambuc 1059*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_ldexpf' function. */ 1060*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__LDEXPF */ 1061*0a6a1f1dSLionel Sambuc 1062*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_ldexpl' function. */ 1063*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__LDEXPL */ 1064*0a6a1f1dSLionel Sambuc 1065*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_log10f' function. */ 1066*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__LOG10F */ 1067*0a6a1f1dSLionel Sambuc 1068*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_log10l' function. */ 1069*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__LOG10L */ 1070*0a6a1f1dSLionel Sambuc 1071*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_logf' function. */ 1072*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__LOGF */ 1073*0a6a1f1dSLionel Sambuc 1074*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_logl' function. */ 1075*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__LOGL */ 1076*0a6a1f1dSLionel Sambuc 1077*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_modf' function. */ 1078*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__MODF */ 1079*0a6a1f1dSLionel Sambuc 1080*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_modff' function. */ 1081*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__MODFF */ 1082*0a6a1f1dSLionel Sambuc 1083*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_modfl' function. */ 1084*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__MODFL */ 1085*0a6a1f1dSLionel Sambuc 1086*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_powf' function. */ 1087*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__POWF */ 1088*0a6a1f1dSLionel Sambuc 1089*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_powl' function. */ 1090*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__POWL */ 1091*0a6a1f1dSLionel Sambuc 1092*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_qfpclass' function. */ 1093*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__QFPCLASS */ 1094*0a6a1f1dSLionel Sambuc 1095*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sincos' function. */ 1096*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINCOS */ 1097*0a6a1f1dSLionel Sambuc 1098*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sincosf' function. */ 1099*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINCOSF */ 1100*0a6a1f1dSLionel Sambuc 1101*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sincosl' function. */ 1102*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINCOSL */ 1103*0a6a1f1dSLionel Sambuc 1104*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sinf' function. */ 1105*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINF */ 1106*0a6a1f1dSLionel Sambuc 1107*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sinhf' function. */ 1108*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINHF */ 1109*0a6a1f1dSLionel Sambuc 1110*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sinhl' function. */ 1111*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINHL */ 1112*0a6a1f1dSLionel Sambuc 1113*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sinl' function. */ 1114*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SINL */ 1115*0a6a1f1dSLionel Sambuc 1116*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sqrtf' function. */ 1117*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SQRTF */ 1118*0a6a1f1dSLionel Sambuc 1119*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_sqrtl' function. */ 1120*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__SQRTL */ 1121*0a6a1f1dSLionel Sambuc 1122*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_tanf' function. */ 1123*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__TANF */ 1124*0a6a1f1dSLionel Sambuc 1125*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_tanhf' function. */ 1126*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__TANHF */ 1127*0a6a1f1dSLionel Sambuc 1128*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_tanhl' function. */ 1129*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__TANHL */ 1130*0a6a1f1dSLionel Sambuc 1131*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the `_tanl' function. */ 1132*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_HAVE__TANL */ 1133*0a6a1f1dSLionel 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 1137*0a6a1f1dSLionel Sambuc /* Define as const if the declaration of iconv() needs const. */ 1138*0a6a1f1dSLionel Sambuc #define _GLIBCXX_ICONV_CONST const 1139*0a6a1f1dSLionel Sambuc 1140*0a6a1f1dSLionel Sambuc /* Define to the sub-directory in which libtool stores uninstalled libraries. 1141*0a6a1f1dSLionel Sambuc */ 1142*0a6a1f1dSLionel Sambuc #define LT_OBJDIR ".libs/" 1143*0a6a1f1dSLionel Sambuc 1144*0a6a1f1dSLionel Sambuc /* Name of package */ 1145*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_PACKAGE */ 1146*0a6a1f1dSLionel Sambuc 1147*0a6a1f1dSLionel Sambuc /* Define to the address where bug reports for this package should be sent. */ 1148*0a6a1f1dSLionel Sambuc #define _GLIBCXX_PACKAGE_BUGREPORT "" 1149*0a6a1f1dSLionel Sambuc 1150*0a6a1f1dSLionel Sambuc /* Define to the full name of this package. */ 1151*0a6a1f1dSLionel Sambuc #define _GLIBCXX_PACKAGE_NAME "package-unused" 1152*0a6a1f1dSLionel Sambuc 1153*0a6a1f1dSLionel Sambuc /* Define to the full name and version of this package. */ 1154*0a6a1f1dSLionel Sambuc #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused" 1155*0a6a1f1dSLionel Sambuc 1156*0a6a1f1dSLionel Sambuc /* Define to the one symbol short name of this package. */ 1157*0a6a1f1dSLionel Sambuc #define _GLIBCXX_PACKAGE_TARNAME "libstdc++" 1158*0a6a1f1dSLionel Sambuc 1159*0a6a1f1dSLionel Sambuc /* Define to the home page for this package. */ 1160*0a6a1f1dSLionel Sambuc #define _GLIBCXX_PACKAGE_URL "" 1161*0a6a1f1dSLionel Sambuc 1162*0a6a1f1dSLionel Sambuc /* Define to the version of this package. */ 1163*0a6a1f1dSLionel Sambuc #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused" 1164*0a6a1f1dSLionel Sambuc 1165*0a6a1f1dSLionel Sambuc /* The size of `char', as computed by sizeof. */ 1166*0a6a1f1dSLionel Sambuc /* #undef SIZEOF_CHAR */ 1167*0a6a1f1dSLionel Sambuc 1168*0a6a1f1dSLionel Sambuc /* The size of `int', as computed by sizeof. */ 1169*0a6a1f1dSLionel Sambuc /* #undef SIZEOF_INT */ 1170*0a6a1f1dSLionel Sambuc 1171*0a6a1f1dSLionel Sambuc /* The size of `long', as computed by sizeof. */ 1172*0a6a1f1dSLionel Sambuc /* #undef SIZEOF_LONG */ 1173*0a6a1f1dSLionel Sambuc 1174*0a6a1f1dSLionel Sambuc /* The size of `short', as computed by sizeof. */ 1175*0a6a1f1dSLionel Sambuc /* #undef SIZEOF_SHORT */ 1176*0a6a1f1dSLionel Sambuc 1177*0a6a1f1dSLionel Sambuc /* The size of `void *', as computed by sizeof. */ 1178*0a6a1f1dSLionel Sambuc /* #undef SIZEOF_VOID_P */ 1179*0a6a1f1dSLionel Sambuc 1180*0a6a1f1dSLionel Sambuc /* Define to 1 if you have the ANSI C header files. */ 1181*0a6a1f1dSLionel Sambuc #define STDC_HEADERS 1 1182*0a6a1f1dSLionel Sambuc 1183*0a6a1f1dSLionel Sambuc /* Version number of package */ 1184*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_VERSION */ 1185*0a6a1f1dSLionel Sambuc 1186*0a6a1f1dSLionel Sambuc /* Define if the compiler supports C++11 atomics. */ 1187*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_ATOMIC_BUILTINS */ 1188*0a6a1f1dSLionel Sambuc 1189*0a6a1f1dSLionel Sambuc /* Define to use concept checking code from the boost libraries. */ 1190*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_CONCEPT_CHECKS */ 1191*0a6a1f1dSLionel 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 1195*0a6a1f1dSLionel Sambuc 1196*0a6a1f1dSLionel Sambuc /* Define if gthreads library is available. */ 1197*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HAS_GTHREADS 1 1198*0a6a1f1dSLionel Sambuc 1199*0a6a1f1dSLionel Sambuc /* Define to 1 if a full hosted library is built, or 0 if freestanding. */ 1200*0a6a1f1dSLionel Sambuc #define _GLIBCXX_HOSTED 1 1201*0a6a1f1dSLionel Sambuc 1202*0a6a1f1dSLionel Sambuc /* Define if compatibility should be provided for -mlong-double-64. */ 1203*0a6a1f1dSLionel Sambuc 1204*0a6a1f1dSLionel Sambuc /* Define if ptrdiff_t is int. */ 1205*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */ 1206*0a6a1f1dSLionel Sambuc 1207*0a6a1f1dSLionel Sambuc /* Define if using setrlimit to set resource limits during "make check" */ 1208*0a6a1f1dSLionel Sambuc #define _GLIBCXX_RES_LIMITS 1 1209*0a6a1f1dSLionel Sambuc 1210*0a6a1f1dSLionel Sambuc /* Define if size_t is unsigned int. */ 1211*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SIZE_T_IS_UINT */ 1212*0a6a1f1dSLionel Sambuc 1213*0a6a1f1dSLionel Sambuc /* Define if the compiler is configured for setjmp/longjmp exceptions. */ 1214*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */ 1215*0a6a1f1dSLionel 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 1224*0a6a1f1dSLionel Sambuc 1225*0a6a1f1dSLionel Sambuc /* Define to use symbol versioning in the shared library. */ 1226*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SYMVER */ 1227*0a6a1f1dSLionel Sambuc 1228*0a6a1f1dSLionel Sambuc /* Define to use darwin versioning in the shared library. */ 1229*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SYMVER_DARWIN */ 1230*0a6a1f1dSLionel Sambuc 1231*0a6a1f1dSLionel Sambuc /* Define to use GNU versioning in the shared library. */ 1232*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SYMVER_GNU */ 1233*0a6a1f1dSLionel Sambuc 1234*0a6a1f1dSLionel Sambuc /* Define to use GNU namespace versioning in the shared library. */ 1235*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */ 1236*0a6a1f1dSLionel Sambuc 1237*0a6a1f1dSLionel Sambuc /* Define to use Sun versioning in the shared library. */ 1238*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_SYMVER_SUN */ 1239*0a6a1f1dSLionel Sambuc 1240*0a6a1f1dSLionel Sambuc /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>, 1241*0a6a1f1dSLionel Sambuc <stdio.h>, and <stdlib.h> can be used or exposed. */ 1242*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99 1 1243*0a6a1f1dSLionel Sambuc 1244*0a6a1f1dSLionel Sambuc /* Define if C99 functions in <complex.h> should be used in <complex>. Using 1245*0a6a1f1dSLionel Sambuc compiler builtins for these functions requires corresponding C99 library 1246*0a6a1f1dSLionel Sambuc functions to be present. */ 1247*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_COMPLEX 1 1248*0a6a1f1dSLionel Sambuc 1249*0a6a1f1dSLionel Sambuc /* Define if C99 functions in <complex.h> should be used in <tr1/complex>. 1250*0a6a1f1dSLionel Sambuc Using compiler builtins for these functions requires corresponding C99 1251*0a6a1f1dSLionel Sambuc library functions to be present. */ 1252*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_COMPLEX_TR1 1 1253*0a6a1f1dSLionel Sambuc 1254*0a6a1f1dSLionel Sambuc /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in 1255*0a6a1f1dSLionel Sambuc namespace std::tr1. */ 1256*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_CTYPE_TR1 1 1257*0a6a1f1dSLionel Sambuc 1258*0a6a1f1dSLionel Sambuc /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in 1259*0a6a1f1dSLionel Sambuc namespace std::tr1. */ 1260*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_C99_FENV_TR1 */ 1261*0a6a1f1dSLionel Sambuc 1262*0a6a1f1dSLionel Sambuc /* Define if C99 functions in <inttypes.h> should be imported in 1263*0a6a1f1dSLionel Sambuc <tr1/cinttypes> in namespace std::tr1. */ 1264*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_INTTYPES_TR1 1 1265*0a6a1f1dSLionel Sambuc 1266*0a6a1f1dSLionel Sambuc /* Define if wchar_t C99 functions in <inttypes.h> should be imported in 1267*0a6a1f1dSLionel Sambuc <tr1/cinttypes> in namespace std::tr1. */ 1268*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1 1269*0a6a1f1dSLionel Sambuc 1270*0a6a1f1dSLionel Sambuc /* Define if C99 functions or macros in <math.h> should be imported in <cmath> 1271*0a6a1f1dSLionel Sambuc in namespace std. */ 1272*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_MATH 1 1273*0a6a1f1dSLionel Sambuc 1274*0a6a1f1dSLionel Sambuc /* Define if C99 functions or macros in <math.h> should be imported in 1275*0a6a1f1dSLionel Sambuc <tr1/cmath> in namespace std::tr1. */ 1276*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_MATH_TR1 1 1277*0a6a1f1dSLionel Sambuc 1278*0a6a1f1dSLionel Sambuc /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in 1279*0a6a1f1dSLionel Sambuc namespace std::tr1. */ 1280*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_C99_STDINT_TR1 1 1281*0a6a1f1dSLionel Sambuc 1282*0a6a1f1dSLionel 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 */ 1287*0a6a1f1dSLionel Sambuc 1288*0a6a1f1dSLionel Sambuc /* Defined if clock_gettime has realtime clock support. */ 1289*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_CLOCK_REALTIME 1 1290*0a6a1f1dSLionel Sambuc 1291*0a6a1f1dSLionel Sambuc /* Define if ISO/IEC TR 24733 decimal floating point types are supported on 1292*0a6a1f1dSLionel Sambuc this host. */ 1293*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_DECIMAL_FLOAT */ 1294*0a6a1f1dSLionel Sambuc 1295*0a6a1f1dSLionel Sambuc /* Define if __float128 is supported on this host. */ 1296*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_FLOAT128 */ 1297*0a6a1f1dSLionel Sambuc 1298*0a6a1f1dSLionel Sambuc /* Defined if gettimeofday is available. */ 1299*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_GETTIMEOFDAY 1 1300*0a6a1f1dSLionel 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 1307*0a6a1f1dSLionel Sambuc /* Define if LFS support is available. */ 1308*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_LFS */ 1309*0a6a1f1dSLionel Sambuc 1310*0a6a1f1dSLionel Sambuc /* Define if code specialized for long long should be used. */ 1311*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_LONG_LONG 1 1312*0a6a1f1dSLionel Sambuc 1313*0a6a1f1dSLionel Sambuc /* Defined if nanosleep is available. */ 1314*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_NANOSLEEP 1 1315*0a6a1f1dSLionel Sambuc 1316*0a6a1f1dSLionel Sambuc /* Define if NLS translations are to be used. */ 1317*0a6a1f1dSLionel Sambuc /* #undef _GLIBCXX_USE_NLS */ 1318*0a6a1f1dSLionel 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 1322*0a6a1f1dSLionel Sambuc /* Define if /dev/random and /dev/urandom are available for the random_device 1323*0a6a1f1dSLionel Sambuc of TR1 (Chapter 5.1). */ 1324*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_RANDOM_TR1 1 1325*0a6a1f1dSLionel Sambuc 1326*0a6a1f1dSLionel 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 1337*0a6a1f1dSLionel Sambuc 1338*0a6a1f1dSLionel Sambuc /* Define if code specialized for wchar_t should be used. */ 1339*0a6a1f1dSLionel Sambuc #define _GLIBCXX_USE_WCHAR_T 1 1340*0a6a1f1dSLionel 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 1350*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF) 1351*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ACOSF 1 1352*0a6a1f1dSLionel Sambuc # define acosf _acosf 1353*0a6a1f1dSLionel Sambuc #endif 1354*0a6a1f1dSLionel Sambuc 1355*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL) 1356*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ACOSL 1 1357*0a6a1f1dSLionel Sambuc # define acosl _acosl 1358*0a6a1f1dSLionel Sambuc #endif 1359*0a6a1f1dSLionel Sambuc 1360*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF) 1361*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ASINF 1 1362*0a6a1f1dSLionel Sambuc # define asinf _asinf 1363*0a6a1f1dSLionel Sambuc #endif 1364*0a6a1f1dSLionel Sambuc 1365*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL) 1366*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ASINL 1 1367*0a6a1f1dSLionel Sambuc # define asinl _asinl 1368*0a6a1f1dSLionel Sambuc #endif 1369*0a6a1f1dSLionel Sambuc 1370*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F) 1371*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ATAN2F 1 1372*0a6a1f1dSLionel Sambuc # define atan2f _atan2f 1373*0a6a1f1dSLionel Sambuc #endif 1374*0a6a1f1dSLionel Sambuc 1375*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L) 1376*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ATAN2L 1 1377*0a6a1f1dSLionel Sambuc # define atan2l _atan2l 1378*0a6a1f1dSLionel Sambuc #endif 1379*0a6a1f1dSLionel Sambuc 1380*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF) 1381*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ATANF 1 1382*0a6a1f1dSLionel Sambuc # define atanf _atanf 1383*0a6a1f1dSLionel Sambuc #endif 1384*0a6a1f1dSLionel Sambuc 1385*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL) 1386*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ATANL 1 1387*0a6a1f1dSLionel Sambuc # define atanl _atanl 1388*0a6a1f1dSLionel Sambuc #endif 1389*0a6a1f1dSLionel Sambuc 1390*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF) 1391*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_CEILF 1 1392*0a6a1f1dSLionel Sambuc # define ceilf _ceilf 1393*0a6a1f1dSLionel Sambuc #endif 1394*0a6a1f1dSLionel Sambuc 1395*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL) 1396*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_CEILL 1 1397*0a6a1f1dSLionel Sambuc # define ceill _ceill 1398*0a6a1f1dSLionel Sambuc #endif 1399*0a6a1f1dSLionel Sambuc 1400*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF) 1401*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_COSF 1 1402*0a6a1f1dSLionel Sambuc # define cosf _cosf 1403*0a6a1f1dSLionel Sambuc #endif 1404*0a6a1f1dSLionel Sambuc 1405*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF) 1406*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_COSHF 1 1407*0a6a1f1dSLionel Sambuc # define coshf _coshf 1408*0a6a1f1dSLionel Sambuc #endif 1409*0a6a1f1dSLionel Sambuc 1410*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL) 1411*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_COSHL 1 1412*0a6a1f1dSLionel Sambuc # define coshl _coshl 1413*0a6a1f1dSLionel Sambuc #endif 1414*0a6a1f1dSLionel Sambuc 1415*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL) 1416*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_COSL 1 1417*0a6a1f1dSLionel Sambuc # define cosl _cosl 1418*0a6a1f1dSLionel Sambuc #endif 1419*0a6a1f1dSLionel Sambuc 1420*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF) 1421*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_EXPF 1 1422*0a6a1f1dSLionel Sambuc # define expf _expf 1423*0a6a1f1dSLionel Sambuc #endif 1424*0a6a1f1dSLionel Sambuc 1425*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL) 1426*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_EXPL 1 1427*0a6a1f1dSLionel Sambuc # define expl _expl 1428*0a6a1f1dSLionel Sambuc #endif 1429*0a6a1f1dSLionel Sambuc 1430*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF) 1431*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FABSF 1 1432*0a6a1f1dSLionel Sambuc # define fabsf _fabsf 1433*0a6a1f1dSLionel Sambuc #endif 1434*0a6a1f1dSLionel Sambuc 1435*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL) 1436*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FABSL 1 1437*0a6a1f1dSLionel Sambuc # define fabsl _fabsl 1438*0a6a1f1dSLionel Sambuc #endif 1439*0a6a1f1dSLionel Sambuc 1440*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE) 1441*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FINITE 1 1442*0a6a1f1dSLionel Sambuc # define finite _finite 1443*0a6a1f1dSLionel Sambuc #endif 1444*0a6a1f1dSLionel Sambuc 1445*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF) 1446*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FINITEF 1 1447*0a6a1f1dSLionel Sambuc # define finitef _finitef 1448*0a6a1f1dSLionel Sambuc #endif 1449*0a6a1f1dSLionel Sambuc 1450*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL) 1451*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FINITEL 1 1452*0a6a1f1dSLionel Sambuc # define finitel _finitel 1453*0a6a1f1dSLionel Sambuc #endif 1454*0a6a1f1dSLionel Sambuc 1455*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF) 1456*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FLOORF 1 1457*0a6a1f1dSLionel Sambuc # define floorf _floorf 1458*0a6a1f1dSLionel Sambuc #endif 1459*0a6a1f1dSLionel Sambuc 1460*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL) 1461*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FLOORL 1 1462*0a6a1f1dSLionel Sambuc # define floorl _floorl 1463*0a6a1f1dSLionel Sambuc #endif 1464*0a6a1f1dSLionel Sambuc 1465*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF) 1466*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FMODF 1 1467*0a6a1f1dSLionel Sambuc # define fmodf _fmodf 1468*0a6a1f1dSLionel Sambuc #endif 1469*0a6a1f1dSLionel Sambuc 1470*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL) 1471*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FMODL 1 1472*0a6a1f1dSLionel Sambuc # define fmodl _fmodl 1473*0a6a1f1dSLionel Sambuc #endif 1474*0a6a1f1dSLionel Sambuc 1475*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS) 1476*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FPCLASS 1 1477*0a6a1f1dSLionel Sambuc # define fpclass _fpclass 1478*0a6a1f1dSLionel Sambuc #endif 1479*0a6a1f1dSLionel Sambuc 1480*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF) 1481*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FREXPF 1 1482*0a6a1f1dSLionel Sambuc # define frexpf _frexpf 1483*0a6a1f1dSLionel Sambuc #endif 1484*0a6a1f1dSLionel Sambuc 1485*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL) 1486*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_FREXPL 1 1487*0a6a1f1dSLionel Sambuc # define frexpl _frexpl 1488*0a6a1f1dSLionel Sambuc #endif 1489*0a6a1f1dSLionel Sambuc 1490*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT) 1491*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_HYPOT 1 1492*0a6a1f1dSLionel Sambuc # define hypot _hypot 1493*0a6a1f1dSLionel Sambuc #endif 1494*0a6a1f1dSLionel Sambuc 1495*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF) 1496*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_HYPOTF 1 1497*0a6a1f1dSLionel Sambuc # define hypotf _hypotf 1498*0a6a1f1dSLionel Sambuc #endif 1499*0a6a1f1dSLionel Sambuc 1500*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL) 1501*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_HYPOTL 1 1502*0a6a1f1dSLionel Sambuc # define hypotl _hypotl 1503*0a6a1f1dSLionel Sambuc #endif 1504*0a6a1f1dSLionel Sambuc 1505*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF) 1506*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ISINF 1 1507*0a6a1f1dSLionel Sambuc # define isinf _isinf 1508*0a6a1f1dSLionel Sambuc #endif 1509*0a6a1f1dSLionel Sambuc 1510*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF) 1511*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ISINFF 1 1512*0a6a1f1dSLionel Sambuc # define isinff _isinff 1513*0a6a1f1dSLionel Sambuc #endif 1514*0a6a1f1dSLionel Sambuc 1515*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL) 1516*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ISINFL 1 1517*0a6a1f1dSLionel Sambuc # define isinfl _isinfl 1518*0a6a1f1dSLionel Sambuc #endif 1519*0a6a1f1dSLionel Sambuc 1520*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN) 1521*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ISNAN 1 1522*0a6a1f1dSLionel Sambuc # define isnan _isnan 1523*0a6a1f1dSLionel Sambuc #endif 1524*0a6a1f1dSLionel Sambuc 1525*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF) 1526*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ISNANF 1 1527*0a6a1f1dSLionel Sambuc # define isnanf _isnanf 1528*0a6a1f1dSLionel Sambuc #endif 1529*0a6a1f1dSLionel Sambuc 1530*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL) 1531*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_ISNANL 1 1532*0a6a1f1dSLionel Sambuc # define isnanl _isnanl 1533*0a6a1f1dSLionel Sambuc #endif 1534*0a6a1f1dSLionel Sambuc 1535*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF) 1536*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_LDEXPF 1 1537*0a6a1f1dSLionel Sambuc # define ldexpf _ldexpf 1538*0a6a1f1dSLionel Sambuc #endif 1539*0a6a1f1dSLionel Sambuc 1540*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL) 1541*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_LDEXPL 1 1542*0a6a1f1dSLionel Sambuc # define ldexpl _ldexpl 1543*0a6a1f1dSLionel Sambuc #endif 1544*0a6a1f1dSLionel Sambuc 1545*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F) 1546*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_LOG10F 1 1547*0a6a1f1dSLionel Sambuc # define log10f _log10f 1548*0a6a1f1dSLionel Sambuc #endif 1549*0a6a1f1dSLionel Sambuc 1550*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L) 1551*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_LOG10L 1 1552*0a6a1f1dSLionel Sambuc # define log10l _log10l 1553*0a6a1f1dSLionel Sambuc #endif 1554*0a6a1f1dSLionel Sambuc 1555*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF) 1556*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_LOGF 1 1557*0a6a1f1dSLionel Sambuc # define logf _logf 1558*0a6a1f1dSLionel Sambuc #endif 1559*0a6a1f1dSLionel Sambuc 1560*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL) 1561*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_LOGL 1 1562*0a6a1f1dSLionel Sambuc # define logl _logl 1563*0a6a1f1dSLionel Sambuc #endif 1564*0a6a1f1dSLionel Sambuc 1565*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF) 1566*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_MODF 1 1567*0a6a1f1dSLionel Sambuc # define modf _modf 1568*0a6a1f1dSLionel Sambuc #endif 1569*0a6a1f1dSLionel Sambuc 1570*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF) 1571*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_MODFF 1 1572*0a6a1f1dSLionel Sambuc # define modff _modff 1573*0a6a1f1dSLionel Sambuc #endif 1574*0a6a1f1dSLionel Sambuc 1575*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL) 1576*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_MODFL 1 1577*0a6a1f1dSLionel Sambuc # define modfl _modfl 1578*0a6a1f1dSLionel Sambuc #endif 1579*0a6a1f1dSLionel Sambuc 1580*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF) 1581*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_POWF 1 1582*0a6a1f1dSLionel Sambuc # define powf _powf 1583*0a6a1f1dSLionel Sambuc #endif 1584*0a6a1f1dSLionel Sambuc 1585*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL) 1586*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_POWL 1 1587*0a6a1f1dSLionel Sambuc # define powl _powl 1588*0a6a1f1dSLionel Sambuc #endif 1589*0a6a1f1dSLionel Sambuc 1590*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS) 1591*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_QFPCLASS 1 1592*0a6a1f1dSLionel Sambuc # define qfpclass _qfpclass 1593*0a6a1f1dSLionel Sambuc #endif 1594*0a6a1f1dSLionel Sambuc 1595*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS) 1596*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINCOS 1 1597*0a6a1f1dSLionel Sambuc # define sincos _sincos 1598*0a6a1f1dSLionel Sambuc #endif 1599*0a6a1f1dSLionel Sambuc 1600*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF) 1601*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINCOSF 1 1602*0a6a1f1dSLionel Sambuc # define sincosf _sincosf 1603*0a6a1f1dSLionel Sambuc #endif 1604*0a6a1f1dSLionel Sambuc 1605*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL) 1606*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINCOSL 1 1607*0a6a1f1dSLionel Sambuc # define sincosl _sincosl 1608*0a6a1f1dSLionel Sambuc #endif 1609*0a6a1f1dSLionel Sambuc 1610*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF) 1611*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINF 1 1612*0a6a1f1dSLionel Sambuc # define sinf _sinf 1613*0a6a1f1dSLionel Sambuc #endif 1614*0a6a1f1dSLionel Sambuc 1615*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF) 1616*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINHF 1 1617*0a6a1f1dSLionel Sambuc # define sinhf _sinhf 1618*0a6a1f1dSLionel Sambuc #endif 1619*0a6a1f1dSLionel Sambuc 1620*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL) 1621*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINHL 1 1622*0a6a1f1dSLionel Sambuc # define sinhl _sinhl 1623*0a6a1f1dSLionel Sambuc #endif 1624*0a6a1f1dSLionel Sambuc 1625*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL) 1626*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SINL 1 1627*0a6a1f1dSLionel Sambuc # define sinl _sinl 1628*0a6a1f1dSLionel Sambuc #endif 1629*0a6a1f1dSLionel Sambuc 1630*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF) 1631*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SQRTF 1 1632*0a6a1f1dSLionel Sambuc # define sqrtf _sqrtf 1633*0a6a1f1dSLionel Sambuc #endif 1634*0a6a1f1dSLionel Sambuc 1635*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL) 1636*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_SQRTL 1 1637*0a6a1f1dSLionel Sambuc # define sqrtl _sqrtl 1638*0a6a1f1dSLionel Sambuc #endif 1639*0a6a1f1dSLionel Sambuc 1640*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF) 1641*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_STRTOF 1 1642*0a6a1f1dSLionel Sambuc # define strtof _strtof 1643*0a6a1f1dSLionel Sambuc #endif 1644*0a6a1f1dSLionel Sambuc 1645*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD) 1646*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_STRTOLD 1 1647*0a6a1f1dSLionel Sambuc # define strtold _strtold 1648*0a6a1f1dSLionel Sambuc #endif 1649*0a6a1f1dSLionel Sambuc 1650*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF) 1651*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_TANF 1 1652*0a6a1f1dSLionel Sambuc # define tanf _tanf 1653*0a6a1f1dSLionel Sambuc #endif 1654*0a6a1f1dSLionel Sambuc 1655*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF) 1656*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_TANHF 1 1657*0a6a1f1dSLionel Sambuc # define tanhf _tanhf 1658*0a6a1f1dSLionel Sambuc #endif 1659*0a6a1f1dSLionel Sambuc 1660*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL) 1661*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_TANHL 1 1662*0a6a1f1dSLionel Sambuc # define tanhl _tanhl 1663*0a6a1f1dSLionel Sambuc #endif 1664*0a6a1f1dSLionel Sambuc 1665*0a6a1f1dSLionel Sambuc #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL) 1666*0a6a1f1dSLionel Sambuc # define _GLIBCXX_HAVE_TANL 1 1667*0a6a1f1dSLionel Sambuc # define tanl _tanl 1668*0a6a1f1dSLionel Sambuc #endif 1669*0a6a1f1dSLionel Sambuc 1670*0a6a1f1dSLionel Sambuc #endif // _GLIBCXX_CXX_CONFIG_H 1671