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

Generated on Tue Dec 23 12:33:38 2003 for libstdc++-v3 Source by doxygen 1.3.4