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__ 20050130
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 "@@"

// In those parts of the standard C++ library that use a mutex instead
// of a spin-lock, we now unconditionally use GCC's gthr.h mutex
// abstraction layer.  All support to directly map to various
// threading models has been removed.  Note: gthr.h may well map to
// gthr-single.h which is a correct way to express no threads support
// in gcc.  Support for the undocumented _NOTHREADS has been removed.

// Default to the typically high-speed, pool-based allocator (as
// libstdc++-v2) instead of the malloc-based allocator (libstdc++-v3
// snapshots).  See libstdc++-v3/docs/html/17_intro/howto.html for
// details on why you don't want to override this setting.  Ensure
// that threads are properly configured on your platform before
// assigning blame to the STL container-memory allocator.  After doing
// so, please report any possible issues to libstdc++@gcc.gnu.org .
// Do not define __USE_MALLOC on the command line.  Enforce it here:
#ifdef __USE_MALLOC
#error __USE_MALLOC should never be defined.  Read the release notes.
#endif

// Create a boolean flag to be used to determine if --fast-math is set.
#ifdef __FAST_MATH__
#define _GLIBCPP_FAST_MATH 1
#else
#define _GLIBCPP_FAST_MATH 0
#endif

// The remainder of the prewritten config is mostly automatic; all the
// user hooks are listed above.

// End of prewritten config; the discovered settings follow.
/* config.h.  Generated automatically by configure.  */
/* config.h.in.  Generated automatically from configure.in by autoheader 2.13.  */

/* Define if you have a working `mmap' system call.  */
#define _GLIBCPP_HAVE_MMAP 1

// Define if GCC supports weak symbols.
#define _GLIBCPP_SUPPORTS_WEAK __GXX_WEAK__

// Include I/O support for 'long long' and 'unsigned long long'.
#define _GLIBCPP_USE_LONG_LONG 1

// Define if C99 features such as lldiv_t, llabs, lldiv should be exposed.
#define _GLIBCPP_USE_C99 1

// Define if code specialized for wchar_t should be used.
#define _GLIBCPP_USE_WCHAR_T 1

// Define if using setrlimit to limit memory usage during 'make check'.
#define _GLIBCPP_MEM_LIMITS 1

// Define to use concept checking code from the boost libraries.
/* #undef _GLIBCPP_CONCEPT_CHECKS */

// Define to use symbol versioning in the shared library.
#define _GLIBCPP_SYMVER 1

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

Generated on Thu Feb 10 23:22:53 2005 for libstdc++-v3 Source by  doxygen 1.4.0