c++config.h

00001 // Predefined symbols and macros -*- C++ -*-
00002 
00003 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
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 _CXXCONFIG
00032 #define _CXXCONFIG 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 __GLIBCXX__ 20060309
00039 
00040 // Allow use of "export template." This is currently not a feature
00041 // that g++ supports.
00042 // #define _GLIBCXX_EXPORT_TEMPLATE 1
00043 
00044 // Allow use of the GNU syntax extension, "extern template." This
00045 // extension is fully documented in the g++ manual, but in a nutshell,
00046 // it inhibits all implicit instantiations and is used throughout the
00047 // library to avoid multiple weak definitions for required types that
00048 // are already explicitly instantiated in the library binary. This
00049 // substantially reduces the binary size of resulting executables.
00050 #ifndef _GLIBCXX_EXTERN_TEMPLATE
00051 # define _GLIBCXX_EXTERN_TEMPLATE 1
00052 #endif
00053 
00054 // Certain function definitions that are meant to be overridable from
00055 // user code are decorated with this macro.  For some targets, this
00056 // macro causes these definitions to be weak.
00057 #ifndef _GLIBCXX_WEAK_DEFINITION
00058 # define _GLIBCXX_WEAK_DEFINITION
00059 #endif
00060 
00061 // Debug mode support. Debug mode basic_string is not allowed to be
00062 // associated with std, because of locale and exception link
00063 // dependence.
00064 namespace __gnu_debug_def { }
00065 
00066 namespace __gnu_debug 
00067 { 
00068   using namespace __gnu_debug_def;
00069 }
00070 
00071 #ifdef _GLIBCXX_DEBUG
00072 # define _GLIBCXX_STD __gnu_norm
00073 namespace __gnu_norm 
00074 { 
00075   using namespace std; 
00076 }
00077 namespace std
00078 {
00079   using namespace __gnu_debug_def __attribute__ ((strong));
00080 }
00081 #else
00082 # define _GLIBCXX_STD std
00083 #endif
00084 
00085 
00086 // The remainder of the prewritten config is automatic; all the
00087 // user hooks are listed above.
00088 
00089 // Create a boolean flag to be used to determine if --fast-math is set.
00090 #ifdef __FAST_MATH__
00091 # define _GLIBCXX_FAST_MATH 1
00092 #else
00093 # define _GLIBCXX_FAST_MATH 0
00094 #endif
00095 
00096 // This marks string literals in header files to be extracted for eventual
00097 // translation.  It is primarily used for messages in thrown exceptions; see
00098 // src/functexcept.cc.  We use __N because the more traditional _N is used
00099 // for something else under certain OSes (see BADNAMES).
00100 #define __N(msgid)     (msgid)
00101 
00102 // End of prewritten config; the discovered settings follow.
00103 /* config.h.  Generated by configure.  */
00104 /* config.h.in.  Generated from configure.ac by autoheader.  */
00105 // acconfig.h symbols and macros for libstdc++ v3 -*- C++ -*-
00106 
00107 // Defines libstdc++ version.
00108 /* #undef _GLIBCXX_PACKAGE */
00109 /* #undef _GLIBCXX_VERSION */
00110 
00111 // Needed for gettext.
00112 /* #undef ENABLE_NLS */
00113 /* #undef _GLIBCXX_HAVE_CATGETS */
00114 /* #undef _GLIBCXX_HAVE_GETTEXT */
00115 /* #undef _GLIBCXX_HAVE_STPCPY */
00116 
00117 // Include I/O support for 'long long' and 'unsigned long long'.
00118 #define _GLIBCXX_USE_LONG_LONG 1
00119 
00120 // Define if C99 features such as lldiv_t, llabs, lldiv should be exposed.
00121 #define _GLIBCXX_USE_C99 1
00122 
00123 // Define if C99 math functions (like fpclassify) should be exposed.
00124 #define _GLIBCXX_USE_C99_MATH 1
00125 
00126 // Define if C99 complex math functions should be used in std::complex.
00127 #define _GLIBCXX_USE_C99_COMPLEX 1
00128 
00129 // Define if code specialized for wchar_t should be used.
00130 #define _GLIBCXX_USE_WCHAR_T 1
00131 
00132 // Define if using setrlimit to set resource limits during 'make check'.
00133 #define _GLIBCXX_RES_LIMITS 1
00134 
00135 // Define to use concept checking code from the boost libraries.
00136 /* #undef _GLIBCXX_CONCEPT_CHECKS */
00137 
00138 // Define to use symbol versioning in the shared library.
00139 #define _GLIBCXX_SYMVER 1
00140 
00141 // Define if LFS support is available.
00142 #define _GLIBCXX_USE_LFS 1
00143 
00144 // Define if a fully dynamic basic_string is wanted.
00145 /* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */
00146 
00147 // Define if NLS translations are to be used.
00148 #define _GLIBCXX_USE_NLS 1
00149 
00150 // Define if gthr-default.h exists (meaning that threading support is enabled).
00151 #define _GLIBCXX_HAVE_GTHR_DEFAULT 1
00152 
00153 // Define if the atan2f function exists.
00154 #define _GLIBCXX_HAVE_ATAN2F 1
00155 
00156 // Define if the atan2l function exists.
00157 #define _GLIBCXX_HAVE_ATAN2L 1
00158 
00159 // Define if the tanl function exists.
00160 #define _GLIBCXX_HAVE_TANL 1
00161 
00162 // Define if the copysignf function exists.
00163 #define _GLIBCXX_HAVE_COPYSIGNF 1
00164 
00165 // Define if getpagesize exists.
00166 #define _GLIBCXX_HAVE_GETPAGESIZE 1
00167 
00168 // Define if setenv exists.
00169 #define _GLIBCXX_HAVE_SETENV 1
00170 
00171 // Define if sigsetjmp exists.
00172 #define _GLIBCXX_HAVE_SIGSETJMP 1
00173 
00174 // Define if mbstate_t exists in wchar.h.
00175 #define _GLIBCXX_HAVE_MBSTATE_T 1
00176 
00177 // Define if you have the modff function.
00178 #define _GLIBCXX_HAVE_MODFF 1
00179 
00180 // Define if you have the modfl function.
00181 #define _GLIBCXX_HAVE_MODFL 1
00182 
00183 // Define if you have the expf function.
00184 #define _GLIBCXX_HAVE_EXPF 1
00185 
00186 // Define if you have the expl function.
00187 #define _GLIBCXX_HAVE_EXPL 1
00188 
00189 // Define if you have the hypot function.
00190 #define _GLIBCXX_HAVE_HYPOT 1
00191 
00192 // Define if you have the hypotf function.
00193 #define _GLIBCXX_HAVE_HYPOTF 1
00194 
00195 // Define if you have the hypotl function.
00196 #define _GLIBCXX_HAVE_HYPOTL 1
00197 
00198 // Define if the compiler/host combination has __builtin_abs
00199 #define _GLIBCXX_HAVE___BUILTIN_ABS 1
00200 
00201 // Define if the compiler/host combination has __builtin_labs
00202 #define _GLIBCXX_HAVE___BUILTIN_LABS 1
00203 
00204 // Define if the compiler/host combination has __builtin_cos
00205 #define _GLIBCXX_HAVE___BUILTIN_COS 1
00206 
00207 // Define if the compiler/host combination has __builtin_cosf
00208 #define _GLIBCXX_HAVE___BUILTIN_COSF 1
00209 
00210 // Define if the compiler/host combination has __builtin_cosl
00211 #define _GLIBCXX_HAVE___BUILTIN_COSL 1
00212 
00213 // Define if the compiler/host combination has __builtin_fabs
00214 #define _GLIBCXX_HAVE___BUILTIN_FABS 1
00215 
00216 // Define if the compiler/host combination has __builtin_fabsf
00217 #define _GLIBCXX_HAVE___BUILTIN_FABSF 1
00218 
00219 // Define if the compiler/host combination has __builtin_fabsl
00220 #define _GLIBCXX_HAVE___BUILTIN_FABSL 1
00221 
00222 // Define if the compiler/host combination has __builtin_sin
00223 #define _GLIBCXX_HAVE___BUILTIN_SIN 1
00224 
00225 // Define if the compiler/host combination has __builtin_sinf
00226 #define _GLIBCXX_HAVE___BUILTIN_SINF 1
00227 
00228 // Define if the compiler/host combination has __builtin_sinl
00229 #define _GLIBCXX_HAVE___BUILTIN_SINL 1
00230 
00231 // Define if the compiler/host combination has __builtin_sqrt
00232 #define _GLIBCXX_HAVE___BUILTIN_SQRT 1
00233 
00234 // Define if the compiler/host combination has __builtin_sqrtf
00235 #define _GLIBCXX_HAVE___BUILTIN_SQRTF 1
00236 
00237 // Define if the compiler/host combination has __builtin_sqrtl
00238 #define _GLIBCXX_HAVE___BUILTIN_SQRTL 1
00239 
00240 // Define if poll is available in <poll.h>.
00241 #define _GLIBCXX_HAVE_POLL 1
00242 
00243 // Define if S_ISREG (Posix) is available in <sys/stat.h>.
00244 #define _GLIBCXX_HAVE_S_ISREG 1
00245 
00246 // Define if S_IFREG is available in <sys/stat.h>.
00247 /* #undef _GLIBCXX_HAVE_S_IFREG */
00248 
00249 // Define if writev is available in <sys/uio.h>.
00250 #define _GLIBCXX_HAVE_WRITEV 1
00251 
00252 // Define if int64_t is available in <stdint.h>.
00253 #define _GLIBCXX_HAVE_INT64_T 1
00254 
00255 // Define if LC_MESSAGES is available in <locale.h>.
00256 #define _GLIBCXX_HAVE_LC_MESSAGES 1
00257 
00258 // Define if <float.h> exists.
00259 #define _GLIBCXX_HAVE_FLOAT_H 1
00260 
00261 // Define if modf is present in <math.h>
00262 /* #undef _GLIBCXX_HAVE_MODF */
00263 
00264 
00265 /* Define to 1 if you have the `acosf' function. */
00266 #define _GLIBCXX_HAVE_ACOSF 1
00267 
00268 /* Define to 1 if you have the `acosl' function. */
00269 #define _GLIBCXX_HAVE_ACOSL 1
00270 
00271 /* Define to 1 if you have the `asinf' function. */
00272 #define _GLIBCXX_HAVE_ASINF 1
00273 
00274 /* Define to 1 if you have the `asinl' function. */
00275 #define _GLIBCXX_HAVE_ASINL 1
00276 
00277 /* Define to 1 if you have the `atan2f' function. */
00278 #define _GLIBCXX_HAVE_ATAN2F 1
00279 
00280 /* Define to 1 if you have the `atan2l' function. */
00281 #define _GLIBCXX_HAVE_ATAN2L 1
00282 
00283 /* Define to 1 if you have the `atanf' function. */
00284 #define _GLIBCXX_HAVE_ATANF 1
00285 
00286 /* Define to 1 if you have the `atanl' function. */
00287 #define _GLIBCXX_HAVE_ATANL 1
00288 
00289 /* Define to 1 if you have the `btowc' function. */
00290 #define _GLIBCXX_HAVE_BTOWC 1
00291 
00292 /* Define to 1 if you have the `ceilf' function. */
00293 #define _GLIBCXX_HAVE_CEILF 1
00294 
00295 /* Define to 1 if you have the `ceill' function. */
00296 #define _GLIBCXX_HAVE_CEILL 1
00297 
00298 /* Define to 1 if you have the <complex.h> header file. */
00299 #define _GLIBCXX_HAVE_COMPLEX_H 1
00300 
00301 /* Define to 1 if you have the `copysign' function. */
00302 #define _GLIBCXX_HAVE_COPYSIGN 1
00303 
00304 /* Define to 1 if you have the `copysignf' function. */
00305 #define _GLIBCXX_HAVE_COPYSIGNF 1
00306 
00307 /* Define to 1 if you have the `copysignl' function. */
00308 #define _GLIBCXX_HAVE_COPYSIGNL 1
00309 
00310 /* Define to 1 if you have the `cosf' function. */
00311 #define _GLIBCXX_HAVE_COSF 1
00312 
00313 /* Define to 1 if you have the `coshf' function. */
00314 #define _GLIBCXX_HAVE_COSHF 1
00315 
00316 /* Define to 1 if you have the `coshl' function. */
00317 #define _GLIBCXX_HAVE_COSHL 1
00318 
00319 /* Define to 1 if you have the `cosl' function. */
00320 #define _GLIBCXX_HAVE_COSL 1
00321 
00322 /* Define to 1 if you have the <endian.h> header file. */
00323 #define _GLIBCXX_HAVE_ENDIAN_H 1
00324 
00325 /* Define to 1 if you have the `expf' function. */
00326 #define _GLIBCXX_HAVE_EXPF 1
00327 
00328 /* Define to 1 if you have the `expl' function. */
00329 #define _GLIBCXX_HAVE_EXPL 1
00330 
00331 /* Define to 1 if you have the `fabsf' function. */
00332 #define _GLIBCXX_HAVE_FABSF 1
00333 
00334 /* Define to 1 if you have the `fabsl' function. */
00335 #define _GLIBCXX_HAVE_FABSL 1
00336 
00337 /* Define to 1 if you have the `fgetwc' function. */
00338 #define _GLIBCXX_HAVE_FGETWC 1
00339 
00340 /* Define to 1 if you have the `fgetws' function. */
00341 #define _GLIBCXX_HAVE_FGETWS 1
00342 
00343 /* Define to 1 if you have the `finite' function. */
00344 #define _GLIBCXX_HAVE_FINITE 1
00345 
00346 /* Define to 1 if you have the `finitef' function. */
00347 #define _GLIBCXX_HAVE_FINITEF 1
00348 
00349 /* Define to 1 if you have the `finitel' function. */
00350 #define _GLIBCXX_HAVE_FINITEL 1
00351 
00352 /* Define to 1 if you have the <float.h> header file. */
00353 #define _GLIBCXX_HAVE_FLOAT_H 1
00354 
00355 /* Define to 1 if you have the `floorf' function. */
00356 #define _GLIBCXX_HAVE_FLOORF 1
00357 
00358 /* Define to 1 if you have the `floorl' function. */
00359 #define _GLIBCXX_HAVE_FLOORL 1
00360 
00361 /* Define to 1 if you have the `fmodf' function. */
00362 #define _GLIBCXX_HAVE_FMODF 1
00363 
00364 /* Define to 1 if you have the `fmodl' function. */
00365 #define _GLIBCXX_HAVE_FMODL 1
00366 
00367 /* Define to 1 if you have the `fpclass' function. */
00368 /* #undef _GLIBCXX_HAVE_FPCLASS */
00369 
00370 /* Define to 1 if you have the `fputwc' function. */
00371 #define _GLIBCXX_HAVE_FPUTWC 1
00372 
00373 /* Define to 1 if you have the `fputws' function. */
00374 #define _GLIBCXX_HAVE_FPUTWS 1
00375 
00376 /* Define to 1 if you have the <fp.h> header file. */
00377 /* #undef _GLIBCXX_HAVE_FP_H */
00378 
00379 /* Define to 1 if you have the `frexpf' function. */
00380 #define _GLIBCXX_HAVE_FREXPF 1
00381 
00382 /* Define to 1 if you have the `frexpl' function. */
00383 #define _GLIBCXX_HAVE_FREXPL 1
00384 
00385 /* Define to 1 if you have the `fwide' function. */
00386 #define _GLIBCXX_HAVE_FWIDE 1
00387 
00388 /* Define to 1 if you have the `fwprintf' function. */
00389 #define _GLIBCXX_HAVE_FWPRINTF 1
00390 
00391 /* Define to 1 if you have the `fwscanf' function. */
00392 #define _GLIBCXX_HAVE_FWSCANF 1
00393 
00394 /* Define to 1 if you have the <gconv.h> header file. */
00395 #define _GLIBCXX_HAVE_GCONV_H 1
00396 
00397 /* Define to 1 if you have the `getpagesize' function. */
00398 #define _GLIBCXX_HAVE_GETPAGESIZE 1
00399 
00400 /* Define to 1 if you have the `getwc' function. */
00401 #define _GLIBCXX_HAVE_GETWC 1
00402 
00403 /* Define to 1 if you have the `getwchar' function. */
00404 #define _GLIBCXX_HAVE_GETWCHAR 1
00405 
00406 /* Define to 1 if you have the `hypot' function. */
00407 #define _GLIBCXX_HAVE_HYPOT 1
00408 
00409 /* Define to 1 if you have the `hypotf' function. */
00410 #define _GLIBCXX_HAVE_HYPOTF 1
00411 
00412 /* Define to 1 if you have the `hypotl' function. */
00413 #define _GLIBCXX_HAVE_HYPOTL 1
00414 
00415 /* Define to 1 if you have the `iconv' function. */
00416 #define _GLIBCXX_HAVE_ICONV 1
00417 
00418 /* Define to 1 if you have the `iconv_close' function. */
00419 #define _GLIBCXX_HAVE_ICONV_CLOSE 1
00420 
00421 /* Define to 1 if you have the `iconv_open' function. */
00422 #define _GLIBCXX_HAVE_ICONV_OPEN 1
00423 
00424 /* Define to 1 if you have the <ieeefp.h> header file. */
00425 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
00426 
00427 /* Define to 1 if you have the <inttypes.h> header file. */
00428 #define _GLIBCXX_HAVE_INTTYPES_H 1
00429 
00430 /* Define to 1 if you have the `isinf' function. */
00431 #define _GLIBCXX_HAVE_ISINF 1
00432 
00433 /* Define to 1 if you have the `isinff' function. */
00434 #define _GLIBCXX_HAVE_ISINFF 1
00435 
00436 /* Define to 1 if you have the `isinfl' function. */
00437 #define _GLIBCXX_HAVE_ISINFL 1
00438 
00439 /* Define to 1 if you have the `isnan' function. */
00440 #define _GLIBCXX_HAVE_ISNAN 1
00441 
00442 /* Define to 1 if you have the `isnanf' function. */
00443 #define _GLIBCXX_HAVE_ISNANF 1
00444 
00445 /* Define to 1 if you have the `isnanl' function. */
00446 #define _GLIBCXX_HAVE_ISNANL 1
00447 
00448 /* Define to 1 if you have the `iswblank' function. */
00449 #define _GLIBCXX_HAVE_ISWBLANK 1
00450 
00451 /* Define to 1 if you have the `ldexpf' function. */
00452 #define _GLIBCXX_HAVE_LDEXPF 1
00453 
00454 /* Define to 1 if you have the `ldexpl' function. */
00455 #define _GLIBCXX_HAVE_LDEXPL 1
00456 
00457 /* Define to 1 if you have the <libintl.h> header file. */
00458 #define _GLIBCXX_HAVE_LIBINTL_H 1
00459 
00460 /* Define to 1 if you have the `m' library (-lm). */
00461 #define _GLIBCXX_HAVE_LIBM 1
00462 
00463 /* Only used in build directory testsuite_hooks.h. */
00464 #define _GLIBCXX_HAVE_LIMIT_AS 1
00465 
00466 /* Only used in build directory testsuite_hooks.h. */
00467 #define _GLIBCXX_HAVE_LIMIT_DATA 1
00468 
00469 /* Only used in build directory testsuite_hooks.h. */
00470 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
00471 
00472 /* Only used in build directory testsuite_hooks.h. */
00473 #define _GLIBCXX_HAVE_LIMIT_RSS 1
00474 
00475 /* Only used in build directory testsuite_hooks.h. */
00476 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
00477 
00478 /* Define to 1 if you have the <locale.h> header file. */
00479 #define _GLIBCXX_HAVE_LOCALE_H 1
00480 
00481 /* Define to 1 if you have the `log10f' function. */
00482 #define _GLIBCXX_HAVE_LOG10F 1
00483 
00484 /* Define to 1 if you have the `log10l' function. */
00485 #define _GLIBCXX_HAVE_LOG10L 1
00486 
00487 /* Define to 1 if you have the `logf' function. */
00488 #define _GLIBCXX_HAVE_LOGF 1
00489 
00490 /* Define to 1 if you have the `logl' function. */
00491 #define _GLIBCXX_HAVE_LOGL 1
00492 
00493 /* Define to 1 if you have the <machine/endian.h> header file. */
00494 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
00495 
00496 /* Define to 1 if you have the <machine/param.h> header file. */
00497 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
00498 
00499 /* Define to 1 if you have the `mbrlen' function. */
00500 #define _GLIBCXX_HAVE_MBRLEN 1
00501 
00502 /* Define to 1 if you have the `mbrtowc' function. */
00503 #define _GLIBCXX_HAVE_MBRTOWC 1
00504 
00505 /* Define to 1 if you have the `mbsinit' function. */
00506 #define _GLIBCXX_HAVE_MBSINIT 1
00507 
00508 /* Define to 1 if you have the `mbsrtowcs' function. */
00509 #define _GLIBCXX_HAVE_MBSRTOWCS 1
00510 
00511 /* Define to 1 if you have the <memory.h> header file. */
00512 #define _GLIBCXX_HAVE_MEMORY_H 1
00513 
00514 /* Define to 1 if you have a working `mmap' system call. */
00515 #define _GLIBCXX_HAVE_MMAP 1
00516 
00517 /* Define to 1 if you have the `modff' function. */
00518 #define _GLIBCXX_HAVE_MODFF 1
00519 
00520 /* Define to 1 if you have the `modfl' function. */
00521 #define _GLIBCXX_HAVE_MODFL 1
00522 
00523 /* Define to 1 if you have the <nan.h> header file. */
00524 /* #undef _GLIBCXX_HAVE_NAN_H */
00525 
00526 /* Define to 1 if you have the `nl_langinfo' function. */
00527 #define _GLIBCXX_HAVE_NL_LANGINFO 1
00528 
00529 /* Define to 1 if you have the `powf' function. */
00530 #define _GLIBCXX_HAVE_POWF 1
00531 
00532 /* Define to 1 if you have the `powl' function. */
00533 #define _GLIBCXX_HAVE_POWL 1
00534 
00535 /* Define to 1 if you have the `putwc' function. */
00536 #define _GLIBCXX_HAVE_PUTWC 1
00537 
00538 /* Define to 1 if you have the `putwchar' function. */
00539 #define _GLIBCXX_HAVE_PUTWCHAR 1
00540 
00541 /* Define to 1 if you have the `qfpclass' function. */
00542 /* #undef _GLIBCXX_HAVE_QFPCLASS */
00543 
00544 /* Define to 1 if you have the `setenv' function. */
00545 #define _GLIBCXX_HAVE_SETENV 1
00546 
00547 /* Define if sigsetjmp is available. */
00548 #define _GLIBCXX_HAVE_SIGSETJMP 1
00549 
00550 /* Define to 1 if you have the `sincos' function. */
00551 #define _GLIBCXX_HAVE_SINCOS 1
00552 
00553 /* Define to 1 if you have the `sincosf' function. */
00554 #define _GLIBCXX_HAVE_SINCOSF 1
00555 
00556 /* Define to 1 if you have the `sincosl' function. */
00557 #define _GLIBCXX_HAVE_SINCOSL 1
00558 
00559 /* Define to 1 if you have the `sinf' function. */
00560 #define _GLIBCXX_HAVE_SINF 1
00561 
00562 /* Define to 1 if you have the `sinhf' function. */
00563 #define _GLIBCXX_HAVE_SINHF 1
00564 
00565 /* Define to 1 if you have the `sinhl' function. */
00566 #define _GLIBCXX_HAVE_SINHL 1
00567 
00568 /* Define to 1 if you have the `sinl' function. */
00569 #define _GLIBCXX_HAVE_SINL 1
00570 
00571 /* Define to 1 if you have the `sqrtf' function. */
00572 #define _GLIBCXX_HAVE_SQRTF 1
00573 
00574 /* Define to 1 if you have the `sqrtl' function. */
00575 #define _GLIBCXX_HAVE_SQRTL 1
00576 
00577 /* Define to 1 if you have the <stdint.h> header file. */
00578 #define _GLIBCXX_HAVE_STDINT_H 1
00579 
00580 /* Define to 1 if you have the <stdlib.h> header file. */
00581 #define _GLIBCXX_HAVE_STDLIB_H 1
00582 
00583 /* Define to 1 if you have the <strings.h> header file. */
00584 #define _GLIBCXX_HAVE_STRINGS_H 1
00585 
00586 /* Define to 1 if you have the <string.h> header file. */
00587 #define _GLIBCXX_HAVE_STRING_H 1
00588 
00589 /* Define to 1 if you have the `strtof' function. */
00590 #define _GLIBCXX_HAVE_STRTOF 1
00591 
00592 /* Define to 1 if you have the `strtold' function. */
00593 #define _GLIBCXX_HAVE_STRTOLD 1
00594 
00595 /* Define to 1 if you have the `swprintf' function. */
00596 #define _GLIBCXX_HAVE_SWPRINTF 1
00597 
00598 /* Define to 1 if you have the `swscanf' function. */
00599 #define _GLIBCXX_HAVE_SWSCANF 1
00600 
00601 /* Define to 1 if you have the <sys/filio.h> header file. */
00602 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
00603 
00604 /* Define to 1 if you have the <sys/ioctl.h> header file. */
00605 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
00606 
00607 /* Define to 1 if you have the <sys/ipc.h> header file. */
00608 #define _GLIBCXX_HAVE_SYS_IPC_H 1
00609 
00610 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
00611 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
00612 
00613 /* Define to 1 if you have the <sys/machine.h> header file. */
00614 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
00615 
00616 /* Define to 1 if you have the <sys/param.h> header file. */
00617 /* #undef _GLIBCXX_HAVE_SYS_PARAM_H */
00618 
00619 /* Define to 1 if you have the <sys/resource.h> header file. */
00620 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
00621 
00622 /* Define to 1 if you have the <sys/sem.h> header file. */
00623 #define _GLIBCXX_HAVE_SYS_SEM_H 1
00624 
00625 /* Define to 1 if you have the <sys/stat.h> header file. */
00626 #define _GLIBCXX_HAVE_SYS_STAT_H 1
00627 
00628 /* Define to 1 if you have the <sys/time.h> header file. */
00629 #define _GLIBCXX_HAVE_SYS_TIME_H 1
00630 
00631 /* Define to 1 if you have the <sys/types.h> header file. */
00632 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
00633 
00634 /* Define to 1 if you have the <sys/uio.h> header file. */
00635 #define _GLIBCXX_HAVE_SYS_UIO_H 1
00636 
00637 /* Define to 1 if you have the `tanf' function. */
00638 #define _GLIBCXX_HAVE_TANF 1
00639 
00640 /* Define to 1 if you have the `tanhf' function. */
00641 #define _GLIBCXX_HAVE_TANHF 1
00642 
00643 /* Define to 1 if you have the `tanhl' function. */
00644 #define _GLIBCXX_HAVE_TANHL 1
00645 
00646 /* Define to 1 if you have the `tanl' function. */
00647 #define _GLIBCXX_HAVE_TANL 1
00648 
00649 /* Define to 1 if you have the `ungetwc' function. */
00650 #define _GLIBCXX_HAVE_UNGETWC 1
00651 
00652 /* Define to 1 if you have the <unistd.h> header file. */
00653 #define _GLIBCXX_HAVE_UNISTD_H 1
00654 
00655 /* Define to 1 if you have the `vfwprintf' function. */
00656 #define _GLIBCXX_HAVE_VFWPRINTF 1
00657 
00658 /* Define to 1 if you have the `vfwscanf' function. */
00659 #define _GLIBCXX_HAVE_VFWSCANF 1
00660 
00661 /* Define to 1 if you have the `vswprintf' function. */
00662 #define _GLIBCXX_HAVE_VSWPRINTF 1
00663 
00664 /* Define to 1 if you have the `vswscanf' function. */
00665 #define _GLIBCXX_HAVE_VSWSCANF 1
00666 
00667 /* Define to 1 if you have the `vwprintf' function. */
00668 #define _GLIBCXX_HAVE_VWPRINTF 1
00669 
00670 /* Define to 1 if you have the `vwscanf' function. */
00671 #define _GLIBCXX_HAVE_VWSCANF 1
00672 
00673 /* Define to 1 if you have the <wchar.h> header file. */
00674 #define _GLIBCXX_HAVE_WCHAR_H 1
00675 
00676 /* Define to 1 if you have the `wcrtomb' function. */
00677 #define _GLIBCXX_HAVE_WCRTOMB 1
00678 
00679 /* Define to 1 if you have the `wcscat' function. */
00680 #define _GLIBCXX_HAVE_WCSCAT 1
00681 
00682 /* Define to 1 if you have the `wcschr' function. */
00683 #define _GLIBCXX_HAVE_WCSCHR 1
00684 
00685 /* Define to 1 if you have the `wcscmp' function. */
00686 #define _GLIBCXX_HAVE_WCSCMP 1
00687 
00688 /* Define to 1 if you have the `wcscoll' function. */
00689 #define _GLIBCXX_HAVE_WCSCOLL 1
00690 
00691 /* Define to 1 if you have the `wcscpy' function. */
00692 #define _GLIBCXX_HAVE_WCSCPY 1
00693 
00694 /* Define to 1 if you have the `wcscspn' function. */
00695 #define _GLIBCXX_HAVE_WCSCSPN 1
00696 
00697 /* Define to 1 if you have the `wcsftime' function. */
00698 #define _GLIBCXX_HAVE_WCSFTIME 1
00699 
00700 /* Define to 1 if you have the `wcslen' function. */
00701 #define _GLIBCXX_HAVE_WCSLEN 1
00702 
00703 /* Define to 1 if you have the `wcsncat' function. */
00704 #define _GLIBCXX_HAVE_WCSNCAT 1
00705 
00706 /* Define to 1 if you have the `wcsncmp' function. */
00707 #define _GLIBCXX_HAVE_WCSNCMP 1
00708 
00709 /* Define to 1 if you have the `wcsncpy' function. */
00710 #define _GLIBCXX_HAVE_WCSNCPY 1
00711 
00712 /* Define to 1 if you have the `wcspbrk' function. */
00713 #define _GLIBCXX_HAVE_WCSPBRK 1
00714 
00715 /* Define to 1 if you have the `wcsrchr' function. */
00716 #define _GLIBCXX_HAVE_WCSRCHR 1
00717 
00718 /* Define to 1 if you have the `wcsrtombs' function. */
00719 #define _GLIBCXX_HAVE_WCSRTOMBS 1
00720 
00721 /* Define to 1 if you have the `wcsspn' function. */
00722 #define _GLIBCXX_HAVE_WCSSPN 1
00723 
00724 /* Define to 1 if you have the `wcsstr' function. */
00725 #define _GLIBCXX_HAVE_WCSSTR 1
00726 
00727 /* Define to 1 if you have the `wcstod' function. */
00728 #define _GLIBCXX_HAVE_WCSTOD 1
00729 
00730 /* Define to 1 if you have the `wcstof' function. */
00731 #define _GLIBCXX_HAVE_WCSTOF 1
00732 
00733 /* Define to 1 if you have the `wcstok' function. */
00734 #define _GLIBCXX_HAVE_WCSTOK 1
00735 
00736 /* Define to 1 if you have the `wcstol' function. */
00737 #define _GLIBCXX_HAVE_WCSTOL 1
00738 
00739 /* Define to 1 if you have the `wcstoul' function. */
00740 #define _GLIBCXX_HAVE_WCSTOUL 1
00741 
00742 /* Define to 1 if you have the `wcsxfrm' function. */
00743 #define _GLIBCXX_HAVE_WCSXFRM 1
00744 
00745 /* Define to 1 if you have the `wctob' function. */
00746 #define _GLIBCXX_HAVE_WCTOB 1
00747 
00748 /* Define to 1 if you have the <wctype.h> header file. */
00749 #define _GLIBCXX_HAVE_WCTYPE_H 1
00750 
00751 /* Define to 1 if you have the `wmemchr' function. */
00752 #define _GLIBCXX_HAVE_WMEMCHR 1
00753 
00754 /* Define to 1 if you have the `wmemcmp' function. */
00755 #define _GLIBCXX_HAVE_WMEMCMP 1
00756 
00757 /* Define to 1 if you have the `wmemcpy' function. */
00758 #define _GLIBCXX_HAVE_WMEMCPY 1
00759 
00760 /* Define to 1 if you have the `wmemmove' function. */
00761 #define _GLIBCXX_HAVE_WMEMMOVE 1
00762 
00763 /* Define to 1 if you have the `wmemset' function. */
00764 #define _GLIBCXX_HAVE_WMEMSET 1
00765 
00766 /* Define to 1 if you have the `wprintf' function. */
00767 #define _GLIBCXX_HAVE_WPRINTF 1
00768 
00769 /* Define to 1 if you have the `wscanf' function. */
00770 #define _GLIBCXX_HAVE_WSCANF 1
00771 
00772 /* Define to 1 if you have the `_acosf' function. */
00773 /* #undef _GLIBCXX_HAVE__ACOSF */
00774 
00775 /* Define to 1 if you have the `_acosl' function. */
00776 /* #undef _GLIBCXX_HAVE__ACOSL */
00777 
00778 /* Define to 1 if you have the `_asinf' function. */
00779 /* #undef _GLIBCXX_HAVE__ASINF */
00780 
00781 /* Define to 1 if you have the `_asinl' function. */
00782 /* #undef _GLIBCXX_HAVE__ASINL */
00783 
00784 /* Define to 1 if you have the `_atan2f' function. */
00785 /* #undef _GLIBCXX_HAVE__ATAN2F */
00786 
00787 /* Define to 1 if you have the `_atan2l' function. */
00788 /* #undef _GLIBCXX_HAVE__ATAN2L */
00789 
00790 /* Define to 1 if you have the `_atanf' function. */
00791 /* #undef _GLIBCXX_HAVE__ATANF */
00792 
00793 /* Define to 1 if you have the `_atanl' function. */
00794 /* #undef _GLIBCXX_HAVE__ATANL */
00795 
00796 /* Define to 1 if you have the `_ceilf' function. */
00797 /* #undef _GLIBCXX_HAVE__CEILF */
00798 
00799 /* Define to 1 if you have the `_ceill' function. */
00800 /* #undef _GLIBCXX_HAVE__CEILL */
00801 
00802 /* Define to 1 if you have the `_copysign' function. */
00803 /* #undef _GLIBCXX_HAVE__COPYSIGN */
00804 
00805 /* Define to 1 if you have the `_copysignl' function. */
00806 /* #undef _GLIBCXX_HAVE__COPYSIGNL */
00807 
00808 /* Define to 1 if you have the `_cosf' function. */
00809 /* #undef _GLIBCXX_HAVE__COSF */
00810 
00811 /* Define to 1 if you have the `_coshf' function. */
00812 /* #undef _GLIBCXX_HAVE__COSHF */
00813 
00814 /* Define to 1 if you have the `_coshl' function. */
00815 /* #undef _GLIBCXX_HAVE__COSHL */
00816 
00817 /* Define to 1 if you have the `_cosl' function. */
00818 /* #undef _GLIBCXX_HAVE__COSL */
00819 
00820 /* Define to 1 if you have the `_expf' function. */
00821 /* #undef _GLIBCXX_HAVE__EXPF */
00822 
00823 /* Define to 1 if you have the `_expl' function. */
00824 /* #undef _GLIBCXX_HAVE__EXPL */
00825 
00826 /* Define to 1 if you have the `_fabsf' function. */
00827 /* #undef _GLIBCXX_HAVE__FABSF */
00828 
00829 /* Define to 1 if you have the `_fabsl' function. */
00830 /* #undef _GLIBCXX_HAVE__FABSL */
00831 
00832 /* Define to 1 if you have the `_finite' function. */
00833 /* #undef _GLIBCXX_HAVE__FINITE */
00834 
00835 /* Define to 1 if you have the `_finitef' function. */
00836 /* #undef _GLIBCXX_HAVE__FINITEF */
00837 
00838 /* Define to 1 if you have the `_finitel' function. */
00839 /* #undef _GLIBCXX_HAVE__FINITEL */
00840 
00841 /* Define to 1 if you have the `_floorf' function. */
00842 /* #undef _GLIBCXX_HAVE__FLOORF */
00843 
00844 /* Define to 1 if you have the `_floorl' function. */
00845 /* #undef _GLIBCXX_HAVE__FLOORL */
00846 
00847 /* Define to 1 if you have the `_fmodf' function. */
00848 /* #undef _GLIBCXX_HAVE__FMODF */
00849 
00850 /* Define to 1 if you have the `_fmodl' function. */
00851 /* #undef _GLIBCXX_HAVE__FMODL */
00852 
00853 /* Define to 1 if you have the `_fpclass' function. */
00854 /* #undef _GLIBCXX_HAVE__FPCLASS */
00855 
00856 /* Define to 1 if you have the `_frexpf' function. */
00857 /* #undef _GLIBCXX_HAVE__FREXPF */
00858 
00859 /* Define to 1 if you have the `_frexpl' function. */
00860 /* #undef _GLIBCXX_HAVE__FREXPL */
00861 
00862 /* Define to 1 if you have the `_hypot' function. */
00863 /* #undef _GLIBCXX_HAVE__HYPOT */
00864 
00865 /* Define to 1 if you have the `_hypotf' function. */
00866 /* #undef _GLIBCXX_HAVE__HYPOTF */
00867 
00868 /* Define to 1 if you have the `_hypotl' function. */
00869 /* #undef _GLIBCXX_HAVE__HYPOTL */
00870 
00871 /* Define to 1 if you have the `_isinf' function. */
00872 /* #undef _GLIBCXX_HAVE__ISINF */
00873 
00874 /* Define to 1 if you have the `_isinff' function. */
00875 /* #undef _GLIBCXX_HAVE__ISINFF */
00876 
00877 /* Define to 1 if you have the `_isinfl' function. */
00878 /* #undef _GLIBCXX_HAVE__ISINFL */
00879 
00880 /* Define to 1 if you have the `_isnan' function. */
00881 /* #undef _GLIBCXX_HAVE__ISNAN */
00882 
00883 /* Define to 1 if you have the `_isnanf' function. */
00884 /* #undef _GLIBCXX_HAVE__ISNANF */
00885 
00886 /* Define to 1 if you have the `_isnanl' function. */
00887 /* #undef _GLIBCXX_HAVE__ISNANL */
00888 
00889 /* Define to 1 if you have the `_ldexpf' function. */
00890 /* #undef _GLIBCXX_HAVE__LDEXPF */
00891 
00892 /* Define to 1 if you have the `_ldexpl' function. */
00893 /* #undef _GLIBCXX_HAVE__LDEXPL */
00894 
00895 /* Define to 1 if you have the `_log10f' function. */
00896 /* #undef _GLIBCXX_HAVE__LOG10F */
00897 
00898 /* Define to 1 if you have the `_log10l' function. */
00899 /* #undef _GLIBCXX_HAVE__LOG10L */
00900 
00901 /* Define to 1 if you have the `_logf' function. */
00902 /* #undef _GLIBCXX_HAVE__LOGF */
00903 
00904 /* Define to 1 if you have the `_logl' function. */
00905 /* #undef _GLIBCXX_HAVE__LOGL */
00906 
00907 /* Define to 1 if you have the `_modff' function. */
00908 /* #undef _GLIBCXX_HAVE__MODFF */
00909 
00910 /* Define to 1 if you have the `_modfl' function. */
00911 /* #undef _GLIBCXX_HAVE__MODFL */
00912 
00913 /* Define to 1 if you have the `_powf' function. */
00914 /* #undef _GLIBCXX_HAVE__POWF */
00915 
00916 /* Define to 1 if you have the `_powl' function. */
00917 /* #undef _GLIBCXX_HAVE__POWL */
00918 
00919 /* Define to 1 if you have the `_qfpclass' function. */
00920 /* #undef _GLIBCXX_HAVE__QFPCLASS */
00921 
00922 /* Define to 1 if you have the `_sincos' function. */
00923 /* #undef _GLIBCXX_HAVE__SINCOS */
00924 
00925 /* Define to 1 if you have the `_sincosf' function. */
00926 /* #undef _GLIBCXX_HAVE__SINCOSF */
00927 
00928 /* Define to 1 if you have the `_sincosl' function. */
00929 /* #undef _GLIBCXX_HAVE__SINCOSL */
00930 
00931 /* Define to 1 if you have the `_sinf' function. */
00932 /* #undef _GLIBCXX_HAVE__SINF */
00933 
00934 /* Define to 1 if you have the `_sinhf' function. */
00935 /* #undef _GLIBCXX_HAVE__SINHF */
00936 
00937 /* Define to 1 if you have the `_sinhl' function. */
00938 /* #undef _GLIBCXX_HAVE__SINHL */
00939 
00940 /* Define to 1 if you have the `_sinl' function. */
00941 /* #undef _GLIBCXX_HAVE__SINL */
00942 
00943 /* Define to 1 if you have the `_sqrtf' function. */
00944 /* #undef _GLIBCXX_HAVE__SQRTF */
00945 
00946 /* Define to 1 if you have the `_sqrtl' function. */
00947 /* #undef _GLIBCXX_HAVE__SQRTL */
00948 
00949 /* Define to 1 if you have the `_tanf' function. */
00950 /* #undef _GLIBCXX_HAVE__TANF */
00951 
00952 /* Define to 1 if you have the `_tanhf' function. */
00953 /* #undef _GLIBCXX_HAVE__TANHF */
00954 
00955 /* Define to 1 if you have the `_tanhl' function. */
00956 /* #undef _GLIBCXX_HAVE__TANHL */
00957 
00958 /* Define to 1 if you have the `_tanl' function. */
00959 /* #undef _GLIBCXX_HAVE__TANL */
00960 
00961 /* Define to 1 if you have the `__signbit' function. */
00962 #define _GLIBCXX_HAVE___SIGNBIT 1
00963 
00964 /* Define to 1 if you have the `__signbitf' function. */
00965 #define _GLIBCXX_HAVE___SIGNBITF 1
00966 
00967 /* Define to 1 if you have the `__signbitl' function. */
00968 #define _GLIBCXX_HAVE___SIGNBITL 1
00969 
00970 /* Define to the address where bug reports for this package should be sent. */
00971 #define _GLIBCXX_PACKAGE_BUGREPORT ""
00972 
00973 /* Define to the full name of this package. */
00974 #define _GLIBCXX_PACKAGE_NAME "package-unused"
00975 
00976 /* Define to the full name and version of this package. */
00977 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
00978 
00979 /* Define to the one symbol short name of this package. */
00980 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
00981 
00982 /* Define to the version of this package. */
00983 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
00984 
00985 /* Define to 1 if you have the ANSI C header files. */
00986 #define STDC_HEADERS 1
00987 
00988 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
00989 #define _GLIBCXX_HOSTED 1
00990 
00991 /* Define if ptrdiff_t is int. */
00992 #define _GLIBCXX_PTRDIFF_T_IS_INT 1
00993 
00994 /* Define if size_t is unsigned int. */
00995 #define _GLIBCXX_SIZE_T_IS_UINT 1
00996 
00997 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
00998 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
00999 //
01000 // Systems that have certain non-standard functions prefixed with an
01001 // underscore, we'll handle those here. Must come after config.h.in.
01002 //
01003 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
01004 # define _GLIBCXX_HAVE_ISNAN 1
01005 # define isnan _isnan
01006 #endif
01007 
01008 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
01009 # define _GLIBCXX_HAVE_ISNANF 1
01010 # define isnanf _isnanf
01011 #endif
01012 
01013 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
01014 # define _GLIBCXX_HAVE_ISNANL 1
01015 # define isnanl _isnanl
01016 #endif
01017 
01018 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
01019 # define _GLIBCXX_HAVE_ISINF 1
01020 # define isinf _isinf
01021 #endif
01022 
01023 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
01024 # define _GLIBCXX_HAVE_ISINFF 1
01025 # define isinff _isinff
01026 #endif
01027 
01028 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
01029 # define _GLIBCXX_HAVE_ISINFL 1
01030 # define isinfl _isinfl
01031 #endif
01032 
01033 #if defined (_GLIBCXX_HAVE__COPYSIGN) && ! defined (_GLIBCXX_HAVE_COPYSIGN)
01034 # define _GLIBCXX_HAVE_COPYSIGN 1
01035 # define copysign _copysign
01036 #endif
01037 
01038 #if defined (_GLIBCXX_HAVE__COPYSIGNL) && ! defined (_GLIBCXX_HAVE_COPYSIGNL)
01039 # define _GLIBCXX_HAVE_COPYSIGNL 1
01040 # define copysignl _copysignl
01041 #endif
01042 
01043 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
01044 # define _GLIBCXX_HAVE_COSF 1
01045 # define cosf _cosf
01046 #endif
01047 
01048 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
01049 # define _GLIBCXX_HAVE_ACOSF 1
01050 # define acosf _acosf
01051 #endif
01052 
01053 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
01054 # define _GLIBCXX_HAVE_ACOSL 1
01055 # define acosl _acosl
01056 #endif
01057 
01058 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
01059 # define _GLIBCXX_HAVE_ASINF 1
01060 # define asinf _asinf
01061 #endif
01062 
01063 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
01064 # define _GLIBCXX_HAVE_ASINL 1
01065 # define asinl _asinl
01066 #endif
01067 
01068 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
01069 # define _GLIBCXX_HAVE_ATANF 1
01070 # define atanf _atanf
01071 #endif
01072 
01073 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
01074 # define _GLIBCXX_HAVE_ATANL 1
01075 # define atanl _atanl
01076 #endif
01077 
01078 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
01079 # define _GLIBCXX_HAVE_CEILF 1
01080 # define aceil _ceilf
01081 #endif
01082 
01083 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
01084 # define _GLIBCXX_HAVE_CEILL 1
01085 # define aceil _ceill
01086 #endif
01087 
01088 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
01089 # define _GLIBCXX_HAVE_COSHF 1
01090 # define coshf _coshf
01091 #endif
01092 
01093 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
01094 # define _GLIBCXX_HAVE_COSL 1
01095 # define cosl _cosl
01096 #endif
01097 
01098 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
01099 # define _GLIBCXX_HAVE_LOGF 1
01100 # define logf _logf
01101 #endif
01102 
01103 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
01104 # define _GLIBCXX_HAVE_COSHL 1
01105 # define coshl _coshl
01106 #endif
01107 
01108 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
01109 # define _GLIBCXX_HAVE_EXPF 1
01110 # define expf _expf
01111 #endif
01112 
01113 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
01114 # define _GLIBCXX_HAVE_EXPL 1
01115 # define expl _expl
01116 #endif
01117 
01118 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
01119 # define _GLIBCXX_HAVE_FABSF 1
01120 # define fabsf _fabsf
01121 #endif
01122 
01123 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
01124 # define _GLIBCXX_HAVE_FABSL 1
01125 # define fabsl _fabsl
01126 #endif
01127 
01128 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
01129 # define _GLIBCXX_HAVE_FLOORF 1
01130 # define floorf _floorf
01131 #endif
01132 
01133 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
01134 # define _GLIBCXX_HAVE_FLOORL 1
01135 # define floorl _floorl
01136 #endif
01137 
01138 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
01139 # define _GLIBCXX_HAVE_FMODF 1
01140 # define fmodf _fmodf
01141 #endif
01142 
01143 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
01144 # define _GLIBCXX_HAVE_FMODL 1
01145 # define fmodl _fmodl
01146 #endif
01147 
01148 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
01149 # define _GLIBCXX_HAVE_FREXPF 1
01150 # define frexpf _frexpf
01151 #endif
01152 
01153 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
01154 # define _GLIBCXX_HAVE_FREXPL 1
01155 # define frexpl _frexpl
01156 #endif
01157 
01158 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
01159 # define _GLIBCXX_HAVE_LDEXPF 1
01160 # define ldexpf _ldexpf
01161 #endif
01162 
01163 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
01164 # define _GLIBCXX_HAVE_LDEXPL 1
01165 # define ldexpl _ldexpl
01166 #endif
01167 
01168 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
01169 # define _GLIBCXX_HAVE_LOG10F 1
01170 # define log10f _log10f
01171 #endif
01172 
01173 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
01174 # define _GLIBCXX_HAVE_LOGL 1
01175 # define logl _logl
01176 #endif
01177 
01178 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
01179 # define _GLIBCXX_HAVE_POWF 1
01180 # define powf _powf
01181 #endif
01182 
01183 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
01184 # define _GLIBCXX_HAVE_LOG10L 1
01185 # define log10l _log10l
01186 #endif
01187 
01188 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
01189 # define _GLIBCXX_HAVE_MODF 1
01190 # define modf _modf
01191 #endif
01192 
01193 #if defined (_GLIBCXX_HAVE__MODL) && ! defined (_GLIBCXX_HAVE_MODL)
01194 # define _GLIBCXX_HAVE_MODL 1
01195 # define modl _modl
01196 #endif
01197 
01198 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
01199 # define _GLIBCXX_HAVE_SINF 1
01200 # define sinf _sinf
01201 #endif
01202 
01203 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
01204 # define _GLIBCXX_HAVE_POWL 1
01205 # define powl _powl
01206 #endif
01207 
01208 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
01209 # define _GLIBCXX_HAVE_SINHF 1
01210 # define sinhf _sinhf
01211 #endif
01212 
01213 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
01214 # define _GLIBCXX_HAVE_SINL 1
01215 # define sinl _sinl
01216 #endif
01217 
01218 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
01219 # define _GLIBCXX_HAVE_SQRTF 1
01220 # define sqrtf _sqrtf
01221 #endif
01222 
01223 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
01224 # define _GLIBCXX_HAVE_SINHL 1
01225 # define sinhl _sinhl
01226 #endif
01227 
01228 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
01229 # define _GLIBCXX_HAVE_TANF 1
01230 # define tanf _tanf
01231 #endif
01232 
01233 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
01234 # define _GLIBCXX_HAVE_SQRTL 1
01235 # define sqrtl _sqrtl
01236 #endif
01237 
01238 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
01239 # define _GLIBCXX_HAVE_TANHF 1
01240 # define tanhf _tanhf
01241 #endif
01242 
01243 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
01244 # define _GLIBCXX_HAVE_TANF 1
01245 # define tanf _tanf
01246 #endif
01247 
01248 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
01249 # define _GLIBCXX_HAVE_STRTOF 1
01250 # define strtof _strtof
01251 #endif
01252 
01253 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
01254 # define _GLIBCXX_HAVE_TANHL 1
01255 # define tanhl _tanhl
01256 #endif
01257 
01258 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
01259 # define _GLIBCXX_HAVE_STRTOLD 1
01260 # define strtold _strtold
01261 #endif
01262 
01263 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
01264 # define _GLIBCXX_HAVE_SINCOS 1
01265 # define sincos _sincos
01266 #endif
01267 
01268 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
01269 # define _GLIBCXX_HAVE_SINCOSF 1
01270 # define sincosf _sincosf
01271 #endif
01272 
01273 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
01274 # define _GLIBCXX_HAVE_SINCOSL 1
01275 # define sincosl _sincosl
01276 #endif
01277 
01278 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
01279 # define _GLIBCXX_HAVE_FINITE 1
01280 # define finite _finite
01281 #endif
01282 
01283 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
01284 # define _GLIBCXX_HAVE_FINITEF 1
01285 # define finitef _finitef
01286 #endif
01287 
01288 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
01289 # define _GLIBCXX_HAVE_FINITEL 1
01290 # define finitel _finitel
01291 #endif
01292 
01293 #if defined (_GLIBCXX_HAVE__QFINITE) && ! defined (_GLIBCXX_HAVE_QFINITE)
01294 # define _GLIBCXX_HAVE_QFINITE 1
01295 # define qfinite _qfinite
01296 #endif
01297 
01298 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
01299 # define _GLIBCXX_HAVE_FPCLASS 1
01300 # define fpclass _fpclass
01301 #endif
01302 
01303 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
01304 # define _GLIBCXX_HAVE_QFPCLASS 1
01305 # define qfpclass _qfpclass
01306 #endif
01307 
01308 #endif // _CXXCONFIG_

Generated on Thu Apr 20 22:14:47 2006 for libstdc++ source by  doxygen 1.4.6