c++config.h

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

Generated on Tue Jan 30 17:31:48 2007 for GNU C++ STL by doxygen 1.3.6