c++config.h

00001 // Predefined symbols and macros -*- C++ -*- 00002 00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. 00004 // 00005 // This file is part of the GNU ISO C++ Library. This library is free 00006 // software; you can redistribute it and/or modify it under the 00007 // terms of the GNU General Public License as published by the 00008 // Free Software Foundation; either version 2, or (at your option) 00009 // any later version. 00010 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 00016 // You should have received a copy of the GNU General Public License along 00017 // with this library; see the file COPYING. If not, write to the Free 00018 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, 00019 // USA. 00020 00021 // As a special exception, you may use this file as part of a free software 00022 // library without restriction. Specifically, if other files instantiate 00023 // templates or use macros or inline functions from this file, or you compile 00024 // this file and link it with other files to produce an executable, this 00025 // file does not by itself cause the resulting executable to be covered by 00026 // the GNU General Public License. This exception does not however 00027 // invalidate any other reasons why the executable file might be covered by 00028 // the GNU General Public License. 00029 00030 #ifndef _CPP_CPPCONFIG 00031 #define _CPP_CPPCONFIG 1 00032 00033 // Pick up any OS-specific definitions. 00034 #include <bits/os_defines.h> 00035 00036 // The current version of the C++ library in compressed ISO date format. 00037 #define __GLIBCPP__ 20030422 00038 00039 // This is necessary until GCC supports separate template 00040 // compilation. 00041 #define _GLIBCPP_NO_TEMPLATE_EXPORT 1 00042 00043 // This is a hack around not having either pre-compiled headers or 00044 // export compilation. If defined, the io, string, and valarray 00045 // headers will include all the necessary bits. If not defined, the 00046 // implementation optimizes the headers for the most commonly-used 00047 // types. For the io library, this means that larger, out-of-line 00048 // member functions are only declared, and definitions are not parsed 00049 // by the compiler, but instead instantiated into the library binary. 00050 #define _GLIBCPP_FULLY_COMPLIANT_HEADERS 1 00051 00052 // To enable older, ARM-style iostreams and other anachronisms use this. 00053 //#define _GLIBCPP_DEPRECATED 1 00054 00055 // Use corrected code from the committee library group's issues list. 00056 #define _GLIBCPP_RESOLVE_LIB_DEFECTS 1 00057 00058 // Hopefully temporary workaround to autoconf/m4 issue with quoting '@'. 00059 #define _GLIBCPP_AT_AT "@@" // In those parts of the standard C++ library that use a mutex instead // of a spin-lock, we now unconditionally use GCC's gthr.h mutex // abstraction layer. All support to directly map to various // threading models has been removed. Note: gthr.h may well map to // gthr-single.h which is a correct way to express no threads support // in gcc. Support for the undocumented _NOTHREADS has been removed. // Default to the typically high-speed, pool-based allocator (as // libstdc++-v2) instead of the malloc-based allocator (libstdc++-v3 // snapshots). See libstdc++-v3/docs/html/17_intro/howto.html for // details on why you don't want to override this setting. Ensure // that threads are properly configured on your platform before // assigning blame to the STL container-memory allocator. After doing // so, please report any possible issues to libstdc++@gcc.gnu.org . // Do not define __USE_MALLOC on the command line. Enforce it here: #ifdef __USE_MALLOC #error __USE_MALLOC should never be defined. Read the release notes. #endif // The remainder of the prewritten config is mostly automatic; all the // user hooks are listed above. // End of prewritten config; the discovered settings follow. /* config.h. Generated automatically by configure. */ /* config.h.in. Generated automatically from configure.in by autoheader 2.13. */ /* Define if you have a working `mmap' system call. */ #define _GLIBCPP_HAVE_MMAP 1 // Define if GCC supports weak symbols. #define _GLIBCPP_SUPPORTS_WEAK __GXX_WEAK__ // Include I/O support for 'long long' and 'unsigned long long'. #define _GLIBCPP_USE_LONG_LONG 1 // Define if C99 features such as lldiv_t, llabs, lldiv should be exposed. #define _GLIBCPP_USE_C99 1 // Define if code specialized for wchar_t should be used. #define _GLIBCPP_USE_WCHAR_T 1 // Define if using setrlimit to limit memory usage during 'make check'. #define _GLIBCPP_MEM_LIMITS 1 // Define to use concept checking code from the boost libraries. /* #undef _GLIBCPP_CONCEPT_CHECKS */ // Define to use symbol versioning in the shared library. #define _GLIBCPP_SYMVER 1 // Define symbol versioning in assember directives. If symbol // versioning is beigng used, and the assembler supports this kind of // thing, then use it. // NB: _GLIBCPP_AT_AT is a hack to work around quoting issues in m4. #if _GLIBCPP_SYMVER #define _GLIBCPP_ASM_SYMVER(cur, old, version) \ asm (".symver " #cur "," #old _GLIBCPP_AT_AT #version); 00060 #else 00061 #define _GLIBCPP_ASM_SYMVER(cur, old, version) 00062 #endif 00063 00064 // Define if gthr-default.h exists (meaning that threading support is enabled). 00065 #define _GLIBCPP_HAVE_GTHR_DEFAULT 1 00066 00067 // Define if mbstate_t exists in wchar.h. 00068 #define _GLIBCPP_HAVE_MBSTATE_T 1 00069 00070 // Define if you have the modff function. 00071 #define _GLIBCPP_HAVE_MODFF 1 00072 00073 // Define if you have the modfl function. 00074 #define _GLIBCPP_HAVE_MODFL 1 00075 00076 // Define if you have the expf function. 00077 #define _GLIBCPP_HAVE_EXPF 1 00078 00079 // Define if you have the expl function. 00080 #define _GLIBCPP_HAVE_EXPL 1 00081 00082 // Define if you have the hypotf function. 00083 #define _GLIBCPP_HAVE_HYPOTF 1 00084 00085 // Define if you have the hypotl function. 00086 #define _GLIBCPP_HAVE_HYPOTL 1 00087 00088 // Define if the compiler/host combination has __builtin_abs 00089 #define _GLIBCPP_HAVE___BUILTIN_ABS 1 00090 00091 // Define if the compiler/host combination has __builtin_labs 00092 #define _GLIBCPP_HAVE___BUILTIN_LABS 1 00093 00094 // Define if the compiler/host combination has __builtin_cos 00095 /* #undef _GLIBCPP_HAVE___BUILTIN_COS */ 00096 00097 // Define if the compiler/host combination has __builtin_cosf 00098 /* #undef _GLIBCPP_HAVE___BUILTIN_COSF */ 00099 00100 // Define if the compiler/host combination has __builtin_cosl 00101 /* #undef _GLIBCPP_HAVE___BUILTIN_COSL */ 00102 00103 // Define if the compiler/host combination has __builtin_fabs 00104 #define _GLIBCPP_HAVE___BUILTIN_FABS 1 00105 00106 // Define if the compiler/host combination has __builtin_fabsf 00107 #define _GLIBCPP_HAVE___BUILTIN_FABSF 1 00108 00109 // Define if the compiler/host combination has __builtin_fabsl 00110 #define _GLIBCPP_HAVE___BUILTIN_FABSL 1 00111 00112 // Define if the compiler/host combination has __builtin_sin 00113 /* #undef _GLIBCPP_HAVE___BUILTIN_SIN */ 00114 00115 // Define if the compiler/host combination has __builtin_sinf 00116 /* #undef _GLIBCPP_HAVE___BUILTIN_SINF */ 00117 00118 // Define if the compiler/host combination has __builtin_sinl 00119 /* #undef _GLIBCPP_HAVE___BUILTIN_SINL */ 00120 00121 // Define if the compiler/host combination has __builtin_sqrt 00122 /* #undef _GLIBCPP_HAVE___BUILTIN_SQRT */ 00123 00124 // Define if the compiler/host combination has __builtin_sqrtf 00125 /* #undef _GLIBCPP_HAVE___BUILTIN_SQRTF */ 00126 00127 // Define if the compiler/host combination has __builtin_sqrtl 00128 /* #undef _GLIBCPP_HAVE___BUILTIN_SQRTL */ 00129 00130 // Define if LC_MESSAGES is available in <locale.h>. 00131 #define _GLIBCPP_HAVE_LC_MESSAGES 1 00132 00133 /* Define if you have the __signbit function. */ 00134 #define _GLIBCPP_HAVE___SIGNBIT 1 00135 00136 /* Define if you have the __signbitf function. */ 00137 #define _GLIBCPP_HAVE___SIGNBITF 1 00138 00139 /* Define if you have the __signbitl function. */ 00140 #define _GLIBCPP_HAVE___SIGNBITL 1 00141 00142 /* Define if you have the _acosf function. */ 00143 /* #undef _GLIBCPP_HAVE__ACOSF */ 00144 00145 /* Define if you have the _acosl function. */ 00146 /* #undef _GLIBCPP_HAVE__ACOSL */ 00147 00148 /* Define if you have the _asinf function. */ 00149 /* #undef _GLIBCPP_HAVE__ASINF */ 00150 00151 /* Define if you have the _asinl function. */ 00152 /* #undef _GLIBCPP_HAVE__ASINL */ 00153 00154 /* Define if you have the _atan2f function. */ 00155 /* #undef _GLIBCPP_HAVE__ATAN2F */ 00156 00157 /* Define if you have the _atan2l function. */ 00158 /* #undef _GLIBCPP_HAVE__ATAN2L */ 00159 00160 /* Define if you have the _atanf function. */ 00161 /* #undef _GLIBCPP_HAVE__ATANF */ 00162 00163 /* Define if you have the _atanl function. */ 00164 /* #undef _GLIBCPP_HAVE__ATANL */ 00165 00166 /* Define if you have the _ceilf function. */ 00167 /* #undef _GLIBCPP_HAVE__CEILF */ 00168 00169 /* Define if you have the _ceill function. */ 00170 /* #undef _GLIBCPP_HAVE__CEILL */ 00171 00172 /* Define if you have the _copysign function. */ 00173 /* #undef _GLIBCPP_HAVE__COPYSIGN */ 00174 00175 /* Define if you have the _copysignl function. */ 00176 /* #undef _GLIBCPP_HAVE__COPYSIGNL */ 00177 00178 /* Define if you have the _cosf function. */ 00179 /* #undef _GLIBCPP_HAVE__COSF */ 00180 00181 /* Define if you have the _coshf function. */ 00182 /* #undef _GLIBCPP_HAVE__COSHF */ 00183 00184 /* Define if you have the _coshl function. */ 00185 /* #undef _GLIBCPP_HAVE__COSHL */ 00186 00187 /* Define if you have the _cosl function. */ 00188 /* #undef _GLIBCPP_HAVE__COSL */ 00189 00190 /* Define if you have the _expf function. */ 00191 /* #undef _GLIBCPP_HAVE__EXPF */ 00192 00193 /* Define if you have the _expl function. */ 00194 /* #undef _GLIBCPP_HAVE__EXPL */ 00195 00196 /* Define if you have the _fabsf function. */ 00197 /* #undef _GLIBCPP_HAVE__FABSF */ 00198 00199 /* Define if you have the _fabsl function. */ 00200 /* #undef _GLIBCPP_HAVE__FABSL */ 00201 00202 /* Define if you have the _finite function. */ 00203 /* #undef _GLIBCPP_HAVE__FINITE */ 00204 00205 /* Define if you have the _finitef function. */ 00206 /* #undef _GLIBCPP_HAVE__FINITEF */ 00207 00208 /* Define if you have the _finitel function. */ 00209 /* #undef _GLIBCPP_HAVE__FINITEL */ 00210 00211 /* Define if you have the _floorf function. */ 00212 /* #undef _GLIBCPP_HAVE__FLOORF */ 00213 00214 /* Define if you have the _floorl function. */ 00215 /* #undef _GLIBCPP_HAVE__FLOORL */ 00216 00217 /* Define if you have the _fmodf function. */ 00218 /* #undef _GLIBCPP_HAVE__FMODF */ 00219 00220 /* Define if you have the _fmodl function. */ 00221 /* #undef _GLIBCPP_HAVE__FMODL */ 00222 00223 /* Define if you have the _fpclass function. */ 00224 /* #undef _GLIBCPP_HAVE__FPCLASS */ 00225 00226 /* Define if you have the _frexpf function. */ 00227 /* #undef _GLIBCPP_HAVE__FREXPF */ 00228 00229 /* Define if you have the _frexpl function. */ 00230 /* #undef _GLIBCPP_HAVE__FREXPL */ 00231 00232 /* Define if you have the _hypot function. */ 00233 /* #undef _GLIBCPP_HAVE__HYPOT */ 00234 00235 /* Define if you have the _hypotf function. */ 00236 /* #undef _GLIBCPP_HAVE__HYPOTF */ 00237 00238 /* Define if you have the _hypotl function. */ 00239 /* #undef _GLIBCPP_HAVE__HYPOTL */ 00240 00241 /* Define if you have the _isinf function. */ 00242 /* #undef _GLIBCPP_HAVE__ISINF */ 00243 00244 /* Define if you have the _isinff function. */ 00245 /* #undef _GLIBCPP_HAVE__ISINFF */ 00246 00247 /* Define if you have the _isinfl function. */ 00248 /* #undef _GLIBCPP_HAVE__ISINFL */ 00249 00250 /* Define if you have the _isnan function. */ 00251 /* #undef _GLIBCPP_HAVE__ISNAN */ 00252 00253 /* Define if you have the _isnanf function. */ 00254 /* #undef _GLIBCPP_HAVE__ISNANF */ 00255 00256 /* Define if you have the _isnanl function. */ 00257 /* #undef _GLIBCPP_HAVE__ISNANL */ 00258 00259 /* Define if you have the _ldexpf function. */ 00260 /* #undef _GLIBCPP_HAVE__LDEXPF */ 00261 00262 /* Define if you have the _ldexpl function. */ 00263 /* #undef _GLIBCPP_HAVE__LDEXPL */ 00264 00265 /* Define if you have the _log10f function. */ 00266 /* #undef _GLIBCPP_HAVE__LOG10F */ 00267 00268 /* Define if you have the _log10l function. */ 00269 /* #undef _GLIBCPP_HAVE__LOG10L */ 00270 00271 /* Define if you have the _logf function. */ 00272 /* #undef _GLIBCPP_HAVE__LOGF */ 00273 00274 /* Define if you have the _logl function. */ 00275 /* #undef _GLIBCPP_HAVE__LOGL */ 00276 00277 /* Define if you have the _modff function. */ 00278 /* #undef _GLIBCPP_HAVE__MODFF */ 00279 00280 /* Define if you have the _modfl function. */ 00281 /* #undef _GLIBCPP_HAVE__MODFL */ 00282 00283 /* Define if you have the _powf function. */ 00284 /* #undef _GLIBCPP_HAVE__POWF */ 00285 00286 /* Define if you have the _powl function. */ 00287 /* #undef _GLIBCPP_HAVE__POWL */ 00288 00289 /* Define if you have the _qfpclass function. */ 00290 /* #undef _GLIBCPP_HAVE__QFPCLASS */ 00291 00292 /* Define if you have the _sincos function. */ 00293 /* #undef _GLIBCPP_HAVE__SINCOS */ 00294 00295 /* Define if you have the _sincosf function. */ 00296 /* #undef _GLIBCPP_HAVE__SINCOSF */ 00297 00298 /* Define if you have the _sincosl function. */ 00299 /* #undef _GLIBCPP_HAVE__SINCOSL */ 00300 00301 /* Define if you have the _sinf function. */ 00302 /* #undef _GLIBCPP_HAVE__SINF */ 00303 00304 /* Define if you have the _sinhf function. */ 00305 /* #undef _GLIBCPP_HAVE__SINHF */ 00306 00307 /* Define if you have the _sinhl function. */ 00308 /* #undef _GLIBCPP_HAVE__SINHL */ 00309 00310 /* Define if you have the _sinl function. */ 00311 /* #undef _GLIBCPP_HAVE__SINL */ 00312 00313 /* Define if you have the _sqrtf function. */ 00314 /* #undef _GLIBCPP_HAVE__SQRTF */ 00315 00316 /* Define if you have the _sqrtl function. */ 00317 /* #undef _GLIBCPP_HAVE__SQRTL */ 00318 00319 /* Define if you have the _tanf function. */ 00320 /* #undef _GLIBCPP_HAVE__TANF */ 00321 00322 /* Define if you have the _tanhf function. */ 00323 /* #undef _GLIBCPP_HAVE__TANHF */ 00324 00325 /* Define if you have the _tanhl function. */ 00326 /* #undef _GLIBCPP_HAVE__TANHL */ 00327 00328 /* Define if you have the _tanl function. */ 00329 /* #undef _GLIBCPP_HAVE__TANL */ 00330 00331 /* Define if you have the acosf function. */ 00332 #define _GLIBCPP_HAVE_ACOSF 1 00333 00334 /* Define if you have the acosl function. */ 00335 #define _GLIBCPP_HAVE_ACOSL 1 00336 00337 /* Define if you have the asinf function. */ 00338 #define _GLIBCPP_HAVE_ASINF 1 00339 00340 /* Define if you have the asinl function. */ 00341 #define _GLIBCPP_HAVE_ASINL 1 00342 00343 /* Define if you have the atan2f function. */ 00344 #define _GLIBCPP_HAVE_ATAN2F 1 00345 00346 /* Define if you have the atan2l function. */ 00347 #define _GLIBCPP_HAVE_ATAN2L 1 00348 00349 /* Define if you have the atanf function. */ 00350 #define _GLIBCPP_HAVE_ATANF 1 00351 00352 /* Define if you have the atanl function. */ 00353 #define _GLIBCPP_HAVE_ATANL 1 00354 00355 /* Define if you have the btowc function. */ 00356 #define _GLIBCPP_HAVE_BTOWC 1 00357 00358 /* Define if you have the ceilf function. */ 00359 #define _GLIBCPP_HAVE_CEILF 1 00360 00361 /* Define if you have the ceill function. */ 00362 #define _GLIBCPP_HAVE_CEILL 1 00363 00364 /* Define if you have the copysign function. */ 00365 #define _GLIBCPP_HAVE_COPYSIGN 1 00366 00367 /* Define if you have the copysignf function. */ 00368 #define _GLIBCPP_HAVE_COPYSIGNF 1 00369 00370 /* Define if you have the copysignl function. */ 00371 #define _GLIBCPP_HAVE_COPYSIGNL 1 00372 00373 /* Define if you have the cosf function. */ 00374 #define _GLIBCPP_HAVE_COSF 1 00375 00376 /* Define if you have the coshf function. */ 00377 #define _GLIBCPP_HAVE_COSHF 1 00378 00379 /* Define if you have the coshl function. */ 00380 #define _GLIBCPP_HAVE_COSHL 1 00381 00382 /* Define if you have the cosl function. */ 00383 #define _GLIBCPP_HAVE_COSL 1 00384 00385 /* Define if you have the drand48 function. */ 00386 #define _GLIBCPP_HAVE_DRAND48 1 00387 00388 /* Define if you have the expf function. */ 00389 #define _GLIBCPP_HAVE_EXPF 1 00390 00391 /* Define if you have the expl function. */ 00392 #define _GLIBCPP_HAVE_EXPL 1 00393 00394 /* Define if you have the fabsf function. */ 00395 #define _GLIBCPP_HAVE_FABSF 1 00396 00397 /* Define if you have the fabsl function. */ 00398 #define _GLIBCPP_HAVE_FABSL 1 00399 00400 /* Define if you have the fgetwc function. */ 00401 #define _GLIBCPP_HAVE_FGETWC 1 00402 00403 /* Define if you have the fgetws function. */ 00404 #define _GLIBCPP_HAVE_FGETWS 1 00405 00406 /* Define if you have the finite function. */ 00407 #define _GLIBCPP_HAVE_FINITE 1 00408 00409 /* Define if you have the finitef function. */ 00410 #define _GLIBCPP_HAVE_FINITEF 1 00411 00412 /* Define if you have the finitel function. */ 00413 #define _GLIBCPP_HAVE_FINITEL 1 00414 00415 /* Define if you have the floorf function. */ 00416 #define _GLIBCPP_HAVE_FLOORF 1 00417 00418 /* Define if you have the floorl function. */ 00419 #define _GLIBCPP_HAVE_FLOORL 1 00420 00421 /* Define if you have the fmodf function. */ 00422 #define _GLIBCPP_HAVE_FMODF 1 00423 00424 /* Define if you have the fmodl function. */ 00425 #define _GLIBCPP_HAVE_FMODL 1 00426 00427 /* Define if you have the fpclass function. */ 00428 /* #undef _GLIBCPP_HAVE_FPCLASS */ 00429 00430 /* Define if you have the fputwc function. */ 00431 #define _GLIBCPP_HAVE_FPUTWC 1 00432 00433 /* Define if you have the fputws function. */ 00434 #define _GLIBCPP_HAVE_FPUTWS 1 00435 00436 /* Define if you have the frexpf function. */ 00437 #define _GLIBCPP_HAVE_FREXPF 1 00438 00439 /* Define if you have the frexpl function. */ 00440 #define _GLIBCPP_HAVE_FREXPL 1 00441 00442 /* Define if you have the fwide function. */ 00443 #define _GLIBCPP_HAVE_FWIDE 1 00444 00445 /* Define if you have the fwprintf function. */ 00446 #define _GLIBCPP_HAVE_FWPRINTF 1 00447 00448 /* Define if you have the fwscanf function. */ 00449 #define _GLIBCPP_HAVE_FWSCANF 1 00450 00451 /* Define if you have the getpagesize function. */ 00452 #define _GLIBCPP_HAVE_GETPAGESIZE 1 00453 00454 /* Define if you have the getwc function. */ 00455 #define _GLIBCPP_HAVE_GETWC 1 00456 00457 /* Define if you have the getwchar function. */ 00458 #define _GLIBCPP_HAVE_GETWCHAR 1 00459 00460 /* Define if you have the hypot function. */ 00461 #define _GLIBCPP_HAVE_HYPOT 1 00462 00463 /* Define if you have the hypotf function. */ 00464 #define _GLIBCPP_HAVE_HYPOTF 1 00465 00466 /* Define if you have the hypotl function. */ 00467 #define _GLIBCPP_HAVE_HYPOTL 1 00468 00469 /* Define if you have the iconv function. */ 00470 #define _GLIBCPP_HAVE_ICONV 1 00471 00472 /* Define if you have the iconv_close function. */ 00473 #define _GLIBCPP_HAVE_ICONV_CLOSE 1 00474 00475 /* Define if you have the iconv_open function. */ 00476 #define _GLIBCPP_HAVE_ICONV_OPEN 1 00477 00478 /* Define if you have the isatty function. */ 00479 #define _GLIBCPP_HAVE_ISATTY 1 00480 00481 /* Define if you have the isinf function. */ 00482 #define _GLIBCPP_HAVE_ISINF 1 00483 00484 /* Define if you have the isinff function. */ 00485 #define _GLIBCPP_HAVE_ISINFF 1 00486 00487 /* Define if you have the isinfl function. */ 00488 #define _GLIBCPP_HAVE_ISINFL 1 00489 00490 /* Define if you have the isnan function. */ 00491 #define _GLIBCPP_HAVE_ISNAN 1 00492 00493 /* Define if you have the isnanf function. */ 00494 #define _GLIBCPP_HAVE_ISNANF 1 00495 00496 /* Define if you have the isnanl function. */ 00497 #define _GLIBCPP_HAVE_ISNANL 1 00498 00499 /* Define if you have the ldexpf function. */ 00500 #define _GLIBCPP_HAVE_LDEXPF 1 00501 00502 /* Define if you have the ldexpl function. */ 00503 #define _GLIBCPP_HAVE_LDEXPL 1 00504 00505 /* Define if you have the log10f function. */ 00506 #define _GLIBCPP_HAVE_LOG10F 1 00507 00508 /* Define if you have the log10l function. */ 00509 #define _GLIBCPP_HAVE_LOG10L 1 00510 00511 /* Define if you have the logf function. */ 00512 #define _GLIBCPP_HAVE_LOGF 1 00513 00514 /* Define if you have the logl function. */ 00515 #define _GLIBCPP_HAVE_LOGL 1 00516 00517 /* Define if you have the mbrlen function. */ 00518 #define _GLIBCPP_HAVE_MBRLEN 1 00519 00520 /* Define if you have the mbrtowc function. */ 00521 #define _GLIBCPP_HAVE_MBRTOWC 1 00522 00523 /* Define if you have the mbsinit function. */ 00524 #define _GLIBCPP_HAVE_MBSINIT 1 00525 00526 /* Define if you have the mbsrtowcs function. */ 00527 #define _GLIBCPP_HAVE_MBSRTOWCS 1 00528 00529 /* Define if you have the modff function. */ 00530 #define _GLIBCPP_HAVE_MODFF 1 00531 00532 /* Define if you have the modfl function. */ 00533 #define _GLIBCPP_HAVE_MODFL 1 00534 00535 /* Define if you have the nan function. */ 00536 #define _GLIBCPP_HAVE_NAN 1 00537 00538 /* Define if you have the nl_langinfo function. */ 00539 #define _GLIBCPP_HAVE_NL_LANGINFO 1 00540 00541 /* Define if you have the powf function. */ 00542 #define _GLIBCPP_HAVE_POWF 1 00543 00544 /* Define if you have the powl function. */ 00545 #define _GLIBCPP_HAVE_POWL 1 00546 00547 /* Define if you have the putwc function. */ 00548 #define _GLIBCPP_HAVE_PUTWC 1 00549 00550 /* Define if you have the putwchar function. */ 00551 #define _GLIBCPP_HAVE_PUTWCHAR 1 00552 00553 /* Define if you have the qfpclass function. */ 00554 /* #undef _GLIBCPP_HAVE_QFPCLASS */ 00555 00556 /* Define if you have the setenv function. */ 00557 #define _GLIBCPP_HAVE_SETENV 1 00558 00559 /* Define if you have the sincos function. */ 00560 #define _GLIBCPP_HAVE_SINCOS 1 00561 00562 /* Define if you have the sincosf function. */ 00563 #define _GLIBCPP_HAVE_SINCOSF 1 00564 00565 /* Define if you have the sincosl function. */ 00566 #define _GLIBCPP_HAVE_SINCOSL 1 00567 00568 /* Define if you have the sinf function. */ 00569 #define _GLIBCPP_HAVE_SINF 1 00570 00571 /* Define if you have the sinhf function. */ 00572 #define _GLIBCPP_HAVE_SINHF 1 00573 00574 /* Define if you have the sinhl function. */ 00575 #define _GLIBCPP_HAVE_SINHL 1 00576 00577 /* Define if you have the sinl function. */ 00578 #define _GLIBCPP_HAVE_SINL 1 00579 00580 /* Define if you have the sqrtf function. */ 00581 #define _GLIBCPP_HAVE_SQRTF 1 00582 00583 /* Define if you have the sqrtl function. */ 00584 #define _GLIBCPP_HAVE_SQRTL 1 00585 00586 /* Define if you have the strtof function. */ 00587 #define _GLIBCPP_HAVE_STRTOF 1 00588 00589 /* Define if you have the strtold function. */ 00590 #define _GLIBCPP_HAVE_STRTOLD 1 00591 00592 /* Define if you have the swprintf function. */ 00593 #define _GLIBCPP_HAVE_SWPRINTF 1 00594 00595 /* Define if you have the swscanf function. */ 00596 #define _GLIBCPP_HAVE_SWSCANF 1 00597 00598 /* Define if you have the tanf function. */ 00599 #define _GLIBCPP_HAVE_TANF 1 00600 00601 /* Define if you have the tanhf function. */ 00602 #define _GLIBCPP_HAVE_TANHF 1 00603 00604 /* Define if you have the tanhl function. */ 00605 #define _GLIBCPP_HAVE_TANHL 1 00606 00607 /* Define if you have the tanl function. */ 00608 #define _GLIBCPP_HAVE_TANL 1 00609 00610 /* Define if you have the ungetwc function. */ 00611 #define _GLIBCPP_HAVE_UNGETWC 1 00612 00613 /* Define if you have the vfwprintf function. */ 00614 #define _GLIBCPP_HAVE_VFWPRINTF 1 00615 00616 /* Define if you have the vfwscanf function. */ 00617 #define _GLIBCPP_HAVE_VFWSCANF 1 00618 00619 /* Define if you have the vswprintf function. */ 00620 #define _GLIBCPP_HAVE_VSWPRINTF 1 00621 00622 /* Define if you have the vswscanf function. */ 00623 #define _GLIBCPP_HAVE_VSWSCANF 1 00624 00625 /* Define if you have the vwprintf function. */ 00626 #define _GLIBCPP_HAVE_VWPRINTF 1 00627 00628 /* Define if you have the vwscanf function. */ 00629 #define _GLIBCPP_HAVE_VWSCANF 1 00630 00631 /* Define if you have the wcrtomb function. */ 00632 #define _GLIBCPP_HAVE_WCRTOMB 1 00633 00634 /* Define if you have the wcscat function. */ 00635 #define _GLIBCPP_HAVE_WCSCAT 1 00636 00637 /* Define if you have the wcschr function. */ 00638 #define _GLIBCPP_HAVE_WCSCHR 1 00639 00640 /* Define if you have the wcscmp function. */ 00641 #define _GLIBCPP_HAVE_WCSCMP 1 00642 00643 /* Define if you have the wcscoll function. */ 00644 #define _GLIBCPP_HAVE_WCSCOLL 1 00645 00646 /* Define if you have the wcscpy function. */ 00647 #define _GLIBCPP_HAVE_WCSCPY 1 00648 00649 /* Define if you have the wcscspn function. */ 00650 #define _GLIBCPP_HAVE_WCSCSPN 1 00651 00652 /* Define if you have the wcsftime function. */ 00653 #define _GLIBCPP_HAVE_WCSFTIME 1 00654 00655 /* Define if you have the wcslen function. */ 00656 #define _GLIBCPP_HAVE_WCSLEN 1 00657 00658 /* Define if you have the wcsncat function. */ 00659 #define _GLIBCPP_HAVE_WCSNCAT 1 00660 00661 /* Define if you have the wcsncmp function. */ 00662 #define _GLIBCPP_HAVE_WCSNCMP 1 00663 00664 /* Define if you have the wcsncpy function. */ 00665 #define _GLIBCPP_HAVE_WCSNCPY 1 00666 00667 /* Define if you have the wcspbrk function. */ 00668 #define _GLIBCPP_HAVE_WCSPBRK 1 00669 00670 /* Define if you have the wcsrchr function. */ 00671 #define _GLIBCPP_HAVE_WCSRCHR 1 00672 00673 /* Define if you have the wcsrtombs function. */ 00674 #define _GLIBCPP_HAVE_WCSRTOMBS 1 00675 00676 /* Define if you have the wcsspn function. */ 00677 #define _GLIBCPP_HAVE_WCSSPN 1 00678 00679 /* Define if you have the wcsstr function. */ 00680 #define _GLIBCPP_HAVE_WCSSTR 1 00681 00682 /* Define if you have the wcstod function. */ 00683 #define _GLIBCPP_HAVE_WCSTOD 1 00684 00685 /* Define if you have the wcstof function. */ 00686 #define _GLIBCPP_HAVE_WCSTOF 1 00687 00688 /* Define if you have the wcstok function. */ 00689 #define _GLIBCPP_HAVE_WCSTOK 1 00690 00691 /* Define if you have the wcstol function. */ 00692 #define _GLIBCPP_HAVE_WCSTOL 1 00693 00694 /* Define if you have the wcstoul function. */ 00695 #define _GLIBCPP_HAVE_WCSTOUL 1 00696 00697 /* Define if you have the wcsxfrm function. */ 00698 #define _GLIBCPP_HAVE_WCSXFRM 1 00699 00700 /* Define if you have the wctob function. */ 00701 #define _GLIBCPP_HAVE_WCTOB 1 00702 00703 /* Define if you have the wmemchr function. */ 00704 #define _GLIBCPP_HAVE_WMEMCHR 1 00705 00706 /* Define if you have the wmemcmp function. */ 00707 #define _GLIBCPP_HAVE_WMEMCMP 1 00708 00709 /* Define if you have the wmemcpy function. */ 00710 #define _GLIBCPP_HAVE_WMEMCPY 1 00711 00712 /* Define if you have the wmemmove function. */ 00713 #define _GLIBCPP_HAVE_WMEMMOVE 1 00714 00715 /* Define if you have the wmemset function. */ 00716 #define _GLIBCPP_HAVE_WMEMSET 1 00717 00718 /* Define if you have the wprintf function. */ 00719 #define _GLIBCPP_HAVE_WPRINTF 1 00720 00721 /* Define if you have the wscanf function. */ 00722 #define _GLIBCPP_HAVE_WSCANF 1 00723 00724 /* Define if you have the <endian.h> header file. */ 00725 #define _GLIBCPP_HAVE_ENDIAN_H 1 00726 00727 /* Define if you have the <float.h> header file. */ 00728 #define _GLIBCPP_HAVE_FLOAT_H 1 00729 00730 /* Define if you have the <fp.h> header file. */ 00731 /* #undef _GLIBCPP_HAVE_FP_H */ 00732 00733 /* Define if you have the <gconv.h> header file. */ 00734 #define _GLIBCPP_HAVE_GCONV_H 1 00735 00736 /* Define if you have the <ieeefp.h> header file. */ 00737 /* #undef _GLIBCPP_HAVE_IEEEFP_H */ 00738 00739 /* Define if you have the <inttypes.h> header file. */ 00740 #define _GLIBCPP_HAVE_INTTYPES_H 1 00741 00742 /* Define if you have the <locale.h> header file. */ 00743 #define _GLIBCPP_HAVE_LOCALE_H 1 00744 00745 /* Define if you have the <machine/endian.h> header file. */ 00746 /* #undef _GLIBCPP_HAVE_MACHINE_ENDIAN_H */ 00747 00748 /* Define if you have the <machine/param.h> header file. */ 00749 /* #undef _GLIBCPP_HAVE_MACHINE_PARAM_H */ 00750 00751 /* Define if you have the <nan.h> header file. */ 00752 /* #undef _GLIBCPP_HAVE_NAN_H */ 00753 00754 /* Define if you have the <stdlib.h> header file. */ 00755 #define _GLIBCPP_HAVE_STDLIB_H 1 00756 00757 /* Define if you have the <string.h> header file. */ 00758 #define _GLIBCPP_HAVE_STRING_H 1 00759 00760 /* Define if you have the <sys/isa_defs.h> header file. */ 00761 /* #undef _GLIBCPP_HAVE_SYS_ISA_DEFS_H */ 00762 00763 /* Define if you have the <sys/machine.h> header file. */ 00764 /* #undef _GLIBCPP_HAVE_SYS_MACHINE_H */ 00765 00766 /* Define if you have the <sys/resource.h> header file. */ 00767 #define _GLIBCPP_HAVE_SYS_RESOURCE_H 1 00768 00769 /* Define if you have the <sys/types.h> header file. */ 00770 #define _GLIBCPP_HAVE_SYS_TYPES_H 1 00771 00772 /* Define if you have the <unistd.h> header file. */ 00773 #define _GLIBCPP_HAVE_UNISTD_H 1 00774 00775 /* Define if you have the <wchar.h> header file. */ 00776 #define _GLIBCPP_HAVE_WCHAR_H 1 00777 00778 /* Define if you have the <wctype.h> header file. */ 00779 #define _GLIBCPP_HAVE_WCTYPE_H 1 00780 00781 /* Define if you have the m library (-lm). */ 00782 #define _GLIBCPP_HAVE_LIBM 1 00783 00784 /* Name of package */ 00785 #define _GLIBCPP_PACKAGE "libstdc++" 00786 00787 /* Version number of package */ 00788 #define _GLIBCPP_VERSION "3.2.3" 00789 00790 /* Define if the compiler is configured for setjmp/longjmp exceptions. */ 00791 /* #undef _GLIBCPP_SJLJ_EXCEPTIONS */ 00792 00793 /* Define if sigsetjmp is available. */ 00794 #define _GLIBCPP_HAVE_SIGSETJMP 1 00795 00796 /* Only used in build directory testsuite_hooks.h. */ 00797 #define _GLIBCPP_HAVE_MEMLIMIT_DATA 1 00798 00799 /* Only used in build directory testsuite_hooks.h. */ 00800 #define _GLIBCPP_HAVE_MEMLIMIT_RSS 1 00801 00802 /* Only used in build directory testsuite_hooks.h. */ 00803 #define _GLIBCPP_HAVE_MEMLIMIT_VMEM 0 00804 00805 /* Only used in build directory testsuite_hooks.h. */ 00806 #define _GLIBCPP_HAVE_MEMLIMIT_AS 1 00807 00808 // 00809 // Systems that have certain non-standard functions prefixed with an 00810 // underscore, we'll handle those here. Must come after config.h.in. 00811 // 00812 #if defined (_GLIBCPP_HAVE__ISNAN) && ! defined (_GLIBCPP_HAVE_ISNAN) 00813 # define _GLIBCPP_HAVE_ISNAN 1 00814 # define isnan _isnan 00815 #endif 00816 00817 #if defined (_GLIBCPP_HAVE__ISNANF) && ! defined (_GLIBCPP_HAVE_ISNANF) 00818 # define _GLIBCPP_HAVE_ISNANF 1 00819 # define isnanf _isnanf 00820 #endif 00821 00822 #if defined (_GLIBCPP_HAVE__ISNANL) && ! defined (_GLIBCPP_HAVE_ISNANL) 00823 # define _GLIBCPP_HAVE_ISNANL 1 00824 # define isnanl _isnanl 00825 #endif 00826 00827 #if defined (_GLIBCPP_HAVE__ISINF) && ! defined (_GLIBCPP_HAVE_ISINF) 00828 # define _GLIBCPP_HAVE_ISINF 1 00829 # define isinf _isinf 00830 #endif 00831 00832 #if defined (_GLIBCPP_HAVE__ISINFF) && ! defined (_GLIBCPP_HAVE_ISINFF) 00833 # define _GLIBCPP_HAVE_ISINFF 1 00834 # define isinff _isinff 00835 #endif 00836 00837 #if defined (_GLIBCPP_HAVE__ISINFL) && ! defined (_GLIBCPP_HAVE_ISINFL) 00838 # define _GLIBCPP_HAVE_ISINFL 1 00839 # define isinfl _isinfl 00840 #endif 00841 00842 #if defined (_GLIBCPP_HAVE__COPYSIGN) && ! defined (_GLIBCPP_HAVE_COPYSIGN) 00843 # define _GLIBCPP_HAVE_COPYSIGN 1 00844 # define copysign _copysign 00845 #endif 00846 00847 #if defined (_GLIBCPP_HAVE__COPYSIGNL) && ! defined (_GLIBCPP_HAVE_COPYSIGNL) 00848 # define _GLIBCPP_HAVE_COPYSIGNL 1 00849 # define copysignl _copysignl 00850 #endif 00851 00852 #if defined (_GLIBCPP_HAVE__COSF) && ! defined (_GLIBCPP_HAVE_COSF) 00853 # define _GLIBCPP_HAVE_COSF 1 00854 # define cosf _cosf 00855 #endif 00856 00857 #if defined (_GLIBCPP_HAVE__ACOSF) && ! defined (_GLIBCPP_HAVE_ACOSF) 00858 # define _GLIBCPP_HAVE_ACOSF 1 00859 # define acosf _acosf 00860 #endif 00861 00862 #if defined (_GLIBCPP_HAVE__ACOSL) && ! defined (_GLIBCPP_HAVE_ACOSL) 00863 # define _GLIBCPP_HAVE_ACOSL 1 00864 # define acosl _acosl 00865 #endif 00866 00867 #if defined (_GLIBCPP_HAVE__ASINF) && ! defined (_GLIBCPP_HAVE_ASINF) 00868 # define _GLIBCPP_HAVE_ASINF 1 00869 # define asinf _asinf 00870 #endif 00871 00872 #if defined (_GLIBCPP_HAVE__ASINL) && ! defined (_GLIBCPP_HAVE_ASINL) 00873 # define _GLIBCPP_HAVE_ASINL 1 00874 # define asinl _asinl 00875 #endif 00876 00877 #if defined (_GLIBCPP_HAVE__ATANF) && ! defined (_GLIBCPP_HAVE_ATANF) 00878 # define _GLIBCPP_HAVE_ATANF 1 00879 # define atanf _atanf 00880 #endif 00881 00882 #if defined (_GLIBCPP_HAVE__ATANL) && ! defined (_GLIBCPP_HAVE_ATANL) 00883 # define _GLIBCPP_HAVE_ATANL 1 00884 # define atanl _atanl 00885 #endif 00886 00887 #if defined (_GLIBCPP_HAVE__CEILF) && ! defined (_GLIBCPP_HAVE_CEILF) 00888 # define _GLIBCPP_HAVE_CEILF 1 00889 # define aceil _ceilf 00890 #endif 00891 00892 #if defined (_GLIBCPP_HAVE__CEILL) && ! defined (_GLIBCPP_HAVE_CEILL) 00893 # define _GLIBCPP_HAVE_CEILL 1 00894 # define aceil _ceill 00895 #endif 00896 00897 #if defined (_GLIBCPP_HAVE__COSHF) && ! defined (_GLIBCPP_HAVE_COSHF) 00898 # define _GLIBCPP_HAVE_COSHF 1 00899 # define coshf _coshf 00900 #endif 00901 00902 #if defined (_GLIBCPP_HAVE__COSL) && ! defined (_GLIBCPP_HAVE_COSL) 00903 # define _GLIBCPP_HAVE_COSL 1 00904 # define cosl _cosl 00905 #endif 00906 00907 #if defined (_GLIBCPP_HAVE__LOGF) && ! defined (_GLIBCPP_HAVE_LOGF) 00908 # define _GLIBCPP_HAVE_LOGF 1 00909 # define logf _logf 00910 #endif 00911 00912 #if defined (_GLIBCPP_HAVE__COSHL) && ! defined (_GLIBCPP_HAVE_COSHL) 00913 # define _GLIBCPP_HAVE_COSHL 1 00914 # define coshl _coshl 00915 #endif 00916 00917 #if defined (_GLIBCPP_HAVE__EXPF) && ! defined (_GLIBCPP_HAVE_EXPF) 00918 # define _GLIBCPP_HAVE_EXPF 1 00919 # define expf _expf 00920 #endif 00921 00922 #if defined (_GLIBCPP_HAVE__EXPL) && ! defined (_GLIBCPP_HAVE_EXPL) 00923 # define _GLIBCPP_HAVE_EXPL 1 00924 # define expl _expl 00925 #endif 00926 00927 #if defined (_GLIBCPP_HAVE__FABSF) && ! defined (_GLIBCPP_HAVE_FABSF) 00928 # define _GLIBCPP_HAVE_FABSF 1 00929 # define fabsf _fabsf 00930 #endif 00931 00932 #if defined (_GLIBCPP_HAVE__FABSL) && ! defined (_GLIBCPP_HAVE_FABSL) 00933 # define _GLIBCPP_HAVE_FABSL 1 00934 # define fabsl _fabsl 00935 #endif 00936 00937 #if defined (_GLIBCPP_HAVE__FLOORF) && ! defined (_GLIBCPP_HAVE_FLOORF) 00938 # define _GLIBCPP_HAVE_FLOORF 1 00939 # define floorf _floorf 00940 #endif 00941 00942 #if defined (_GLIBCPP_HAVE__FLOORL) && ! defined (_GLIBCPP_HAVE_FLOORL) 00943 # define _GLIBCPP_HAVE_FLOORL 1 00944 # define floorl _floorl 00945 #endif 00946 00947 #if defined (_GLIBCPP_HAVE__FMODF) && ! defined (_GLIBCPP_HAVE_FMODF) 00948 # define _GLIBCPP_HAVE_FMODF 1 00949 # define fmodf _fmodf 00950 #endif 00951 00952 #if defined (_GLIBCPP_HAVE__FMODL) && ! defined (_GLIBCPP_HAVE_FMODL) 00953 # define _GLIBCPP_HAVE_FMODL 1 00954 # define fmodl _fmodl 00955 #endif 00956 00957 #if defined (_GLIBCPP_HAVE__FREXPF) && ! defined (_GLIBCPP_HAVE_FREXPF) 00958 # define _GLIBCPP_HAVE_FREXPF 1 00959 # define frexpf _frexpf 00960 #endif 00961 00962 #if defined (_GLIBCPP_HAVE__FREXPL) && ! defined (_GLIBCPP_HAVE_FREXPL) 00963 # define _GLIBCPP_HAVE_FREXPL 1 00964 # define frexpl _frexpl 00965 #endif 00966 00967 #if defined (_GLIBCPP_HAVE__LDEXPF) && ! defined (_GLIBCPP_HAVE_LDEXPF) 00968 # define _GLIBCPP_HAVE_LDEXPF 1 00969 # define ldexpf _ldexpf 00970 #endif 00971 00972 #if defined (_GLIBCPP_HAVE__LDEXPL) && ! defined (_GLIBCPP_HAVE_LDEXPL) 00973 # define _GLIBCPP_HAVE_LDEXPL 1 00974 # define ldexpl _ldexpl 00975 #endif 00976 00977 #if defined (_GLIBCPP_HAVE__LOG10F) && ! defined (_GLIBCPP_HAVE_LOG10F) 00978 # define _GLIBCPP_HAVE_LOG10F 1 00979 # define log10f _log10f 00980 #endif 00981 00982 #if defined (_GLIBCPP_HAVE__LOGL) && ! defined (_GLIBCPP_HAVE_LOGL) 00983 # define _GLIBCPP_HAVE_LOGL 1 00984 # define logl _logl 00985 #endif 00986 00987 #if defined (_GLIBCPP_HAVE__POWF) && ! defined (_GLIBCPP_HAVE_POWF) 00988 # define _GLIBCPP_HAVE_POWF 1 00989 # define powf _powf 00990 #endif 00991 00992 #if defined (_GLIBCPP_HAVE__LOG10L) && ! defined (_GLIBCPP_HAVE_LOG10L) 00993 # define _GLIBCPP_HAVE_LOG10L 1 00994 # define log10l _log10l 00995 #endif 00996 00997 #if defined (_GLIBCPP_HAVE__MODF) && ! defined (_GLIBCPP_HAVE_MODF) 00998 # define _GLIBCPP_HAVE_MODF 1 00999 # define modf _modf 01000 #endif 01001 01002 #if defined (_GLIBCPP_HAVE__MODL) && ! defined (_GLIBCPP_HAVE_MODL) 01003 # define _GLIBCPP_HAVE_MODL 1 01004 # define modl _modl 01005 #endif 01006 01007 #if defined (_GLIBCPP_HAVE__SINF) && ! defined (_GLIBCPP_HAVE_SINF) 01008 # define _GLIBCPP_HAVE_SINF 1 01009 # define sinf _sinf 01010 #endif 01011 01012 #if defined (_GLIBCPP_HAVE__POWL) && ! defined (_GLIBCPP_HAVE_POWL) 01013 # define _GLIBCPP_HAVE_POWL 1 01014 # define powl _powl 01015 #endif 01016 01017 #if defined (_GLIBCPP_HAVE__SINHF) && ! defined (_GLIBCPP_HAVE_SINHF) 01018 # define _GLIBCPP_HAVE_SINHF 1 01019 # define sinhf _sinhf 01020 #endif 01021 01022 #if defined (_GLIBCPP_HAVE__SINL) && ! defined (_GLIBCPP_HAVE_SINL) 01023 # define _GLIBCPP_HAVE_SINL 1 01024 # define sinl _sinl 01025 #endif 01026 01027 #if defined (_GLIBCPP_HAVE__SQRTF) && ! defined (_GLIBCPP_HAVE_SQRTF) 01028 # define _GLIBCPP_HAVE_SQRTF 1 01029 # define sqrtf _sqrtf 01030 #endif 01031 01032 #if defined (_GLIBCPP_HAVE__SINHL) && ! defined (_GLIBCPP_HAVE_SINHL) 01033 # define _GLIBCPP_HAVE_SINHL 1 01034 # define sinhl _sinhl 01035 #endif 01036 01037 #if defined (_GLIBCPP_HAVE__TANF) && ! defined (_GLIBCPP_HAVE_TANF) 01038 # define _GLIBCPP_HAVE_TANF 1 01039 # define tanf _tanf 01040 #endif 01041 01042 #if defined (_GLIBCPP_HAVE__SQRTL) && ! defined (_GLIBCPP_HAVE_SQRTL) 01043 # define _GLIBCPP_HAVE_SQRTL 1 01044 # define sqrtl _sqrtl 01045 #endif 01046 01047 #if defined (_GLIBCPP_HAVE__TANHF) && ! defined (_GLIBCPP_HAVE_TANHF) 01048 # define _GLIBCPP_HAVE_TANHF 1 01049 # define tanhf _tanhf 01050 #endif 01051 01052 #if defined (_GLIBCPP_HAVE__TANL) && ! defined (_GLIBCPP_HAVE_TANL) 01053 # define _GLIBCPP_HAVE_TANF 1 01054 # define tanf _tanf 01055 #endif 01056 01057 #if defined (_GLIBCPP_HAVE__STRTOF) && ! defined (_GLIBCPP_HAVE_STRTOF) 01058 # define _GLIBCPP_HAVE_STRTOF 1 01059 # define strtof _strtof 01060 #endif 01061 01062 #if defined (_GLIBCPP_HAVE__TANHL) && ! defined (_GLIBCPP_HAVE_TANHL) 01063 # define _GLIBCPP_HAVE_TANHL 1 01064 # define tanhl _tanhl 01065 #endif 01066 01067 #if defined (_GLIBCPP_HAVE__STRTOLD) && ! defined (_GLIBCPP_HAVE_STRTOLD) 01068 # define _GLIBCPP_HAVE_STRTOLD 1 01069 # define strtold _strtold 01070 #endif 01071 01072 #if defined (_GLIBCPP_HAVE__SINCOS) && ! defined (_GLIBCPP_HAVE_SINCOS) 01073 # define _GLIBCPP_HAVE_SINCOS 1 01074 # define sincos _sincos 01075 #endif 01076 01077 #if defined (_GLIBCPP_HAVE__SINCOSF) && ! defined (_GLIBCPP_HAVE_SINCOSF) 01078 # define _GLIBCPP_HAVE_SINCOSF 1 01079 # define sincosf _sincosf 01080 #endif 01081 01082 #if defined (_GLIBCPP_HAVE__SINCOSL) && ! defined (_GLIBCPP_HAVE_SINCOSL) 01083 # define _GLIBCPP_HAVE_SINCOSL 1 01084 # define sincosl _sincosl 01085 #endif 01086 01087 #if defined (_GLIBCPP_HAVE__FINITE) && ! defined (_GLIBCPP_HAVE_FINITE) 01088 # define _GLIBCPP_HAVE_FINITE 1 01089 # define finite _finite 01090 #endif 01091 01092 #if defined (_GLIBCPP_HAVE__FINITEF) && ! defined (_GLIBCPP_HAVE_FINITEF) 01093 # define _GLIBCPP_HAVE_FINITEF 1 01094 # define finitef _finitef 01095 #endif 01096 01097 #if defined (_GLIBCPP_HAVE__FINITEL) && ! defined (_GLIBCPP_HAVE_FINITEL) 01098 # define _GLIBCPP_HAVE_FINITEL 1 01099 # define finitel _finitel 01100 #endif 01101 01102 #if defined (_GLIBCPP_HAVE__QFINITE) && ! defined (_GLIBCPP_HAVE_QFINITE) 01103 # define _GLIBCPP_HAVE_QFINITE 1 01104 # define qfinite _qfinite 01105 #endif 01106 01107 #if defined (_GLIBCPP_HAVE__FPCLASS) && ! defined (_GLIBCPP_HAVE_FPCLASS) 01108 # define _GLIBCPP_HAVE_FPCLASS 1 01109 # define fpclass _fpclass 01110 #endif 01111 01112 #if defined (_GLIBCPP_HAVE__QFPCLASS) && ! defined (_GLIBCPP_HAVE_QFPCLASS) 01113 # define _GLIBCPP_HAVE_QFPCLASS 1 01114 # define qfpclass _qfpclass 01115 #endif 01116 01117 #endif // _CPP_CPPCONFIG_ 01118

Generated on Wed Sep 29 13:54:47 2004 for libstdc++-v3 Source by doxygen 1.3.7