c++config.h

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

Generated on Sat Jan 10 15:26:24 2004 for libstdc++-v3 Source by doxygen 1.3.4