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

Generated on Tue Feb 2 16:55:49 2010 for GNU C++ STL by  doxygen 1.4.7