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

Generated on Thu Nov 21 03:12:47 2002 for libstdc++-v3 Source by doxygen1.2.18-20021030