c++config.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef _CPP_CPPCONFIG
00031 #define _CPP_CPPCONFIG 1
00032
00033
00034 #include <bits/os_defines.h>
00035
00036
00037 #define __GLIBCPP__ 20030422
00038
00039
00040
00041 #define _GLIBCPP_NO_TEMPLATE_EXPORT 1
00042
00043
00044
00045
00046
00047
00048
00049
00050 #define _GLIBCPP_FULLY_COMPLIANT_HEADERS 1
00051
00052
00053
00054
00055
00056 #define _GLIBCPP_RESOLVE_LIB_DEFECTS 1
00057
00058
00059 #define _GLIBCPP_AT_AT "@@"
// In those parts of the standard C++ library that use a mutex instead
// of a spin-lock, we now unconditionally use GCC's gthr.h mutex
// abstraction layer. All support to directly map to various
// threading models has been removed. Note: gthr.h may well map to
// gthr-single.h which is a correct way to express no threads support
// in gcc. Support for the undocumented _NOTHREADS has been removed.
// Default to the typically high-speed, pool-based allocator (as
// libstdc++-v2) instead of the malloc-based allocator (libstdc++-v3
// snapshots). See libstdc++-v3/docs/html/17_intro/howto.html for
// details on why you don't want to override this setting. Ensure
// that threads are properly configured on your platform before
// assigning blame to the STL container-memory allocator. After doing
// so, please report any possible issues to libstdc++@gcc.gnu.org .
// Do not define __USE_MALLOC on the command line. Enforce it here:
#ifdef __USE_MALLOC
#error __USE_MALLOC should never be defined. Read the release notes.
#endif
// The remainder of the prewritten config is mostly automatic; all the
// user hooks are listed above.
// End of prewritten config; the discovered settings follow.
/* config.h. Generated automatically by configure. */
/* config.h.in. Generated automatically from configure.in by autoheader 2.13. */
/* Define if you have a working `mmap' system call. */
#define _GLIBCPP_HAVE_MMAP 1
// Define if GCC supports weak symbols.
#define _GLIBCPP_SUPPORTS_WEAK __GXX_WEAK__
// Include I/O support for 'long long' and 'unsigned long long'.
#define _GLIBCPP_USE_LONG_LONG 1
// Define if C99 features such as lldiv_t, llabs, lldiv should be exposed.
#define _GLIBCPP_USE_C99 1
// Define if code specialized for wchar_t should be used.
#define _GLIBCPP_USE_WCHAR_T 1
// Define if using setrlimit to limit memory usage during 'make check'.
#define _GLIBCPP_MEM_LIMITS 1
// Define to use concept checking code from the boost libraries.
/* #undef _GLIBCPP_CONCEPT_CHECKS */
// Define to use symbol versioning in the shared library.
#define _GLIBCPP_SYMVER 1
// Define symbol versioning in assember directives. If symbol
// versioning is beigng used, and the assembler supports this kind of
// thing, then use it.
// NB: _GLIBCPP_AT_AT is a hack to work around quoting issues in m4.
#if _GLIBCPP_SYMVER
#define _GLIBCPP_ASM_SYMVER(cur, old, version) \
asm (".symver " #cur "," #old _GLIBCPP_AT_AT #version);
00060 #else
00061 #define _GLIBCPP_ASM_SYMVER(cur, old, version)
00062 #endif
00063
00064
00065 #define _GLIBCPP_HAVE_GTHR_DEFAULT 1
00066
00067
00068 #define _GLIBCPP_HAVE_MBSTATE_T 1
00069
00070
00071 #define _GLIBCPP_HAVE_MODFF 1
00072
00073
00074 #define _GLIBCPP_HAVE_MODFL 1
00075
00076
00077 #define _GLIBCPP_HAVE_EXPF 1
00078
00079
00080 #define _GLIBCPP_HAVE_EXPL 1
00081
00082
00083 #define _GLIBCPP_HAVE_HYPOTF 1
00084
00085
00086 #define _GLIBCPP_HAVE_HYPOTL 1
00087
00088
00089 #define _GLIBCPP_HAVE___BUILTIN_ABS 1
00090
00091
00092 #define _GLIBCPP_HAVE___BUILTIN_LABS 1
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104 #define _GLIBCPP_HAVE___BUILTIN_FABS 1
00105
00106
00107 #define _GLIBCPP_HAVE___BUILTIN_FABSF 1
00108
00109
00110 #define _GLIBCPP_HAVE___BUILTIN_FABSL 1
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131 #define _GLIBCPP_HAVE_LC_MESSAGES 1
00132
00133
00134 #define _GLIBCPP_HAVE___SIGNBIT 1
00135
00136
00137 #define _GLIBCPP_HAVE___SIGNBITF 1
00138
00139
00140 #define _GLIBCPP_HAVE___SIGNBITL 1
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332 #define _GLIBCPP_HAVE_ACOSF 1
00333
00334
00335 #define _GLIBCPP_HAVE_ACOSL 1
00336
00337
00338 #define _GLIBCPP_HAVE_ASINF 1
00339
00340
00341 #define _GLIBCPP_HAVE_ASINL 1
00342
00343
00344 #define _GLIBCPP_HAVE_ATAN2F 1
00345
00346
00347 #define _GLIBCPP_HAVE_ATAN2L 1
00348
00349
00350 #define _GLIBCPP_HAVE_ATANF 1
00351
00352
00353 #define _GLIBCPP_HAVE_ATANL 1
00354
00355
00356 #define _GLIBCPP_HAVE_BTOWC 1
00357
00358
00359 #define _GLIBCPP_HAVE_CEILF 1
00360
00361
00362 #define _GLIBCPP_HAVE_CEILL 1
00363
00364
00365 #define _GLIBCPP_HAVE_COPYSIGN 1
00366
00367
00368 #define _GLIBCPP_HAVE_COPYSIGNF 1
00369
00370
00371 #define _GLIBCPP_HAVE_COPYSIGNL 1
00372
00373
00374 #define _GLIBCPP_HAVE_COSF 1
00375
00376
00377 #define _GLIBCPP_HAVE_COSHF 1
00378
00379
00380 #define _GLIBCPP_HAVE_COSHL 1
00381
00382
00383 #define _GLIBCPP_HAVE_COSL 1
00384
00385
00386 #define _GLIBCPP_HAVE_DRAND48 1
00387
00388
00389 #define _GLIBCPP_HAVE_EXPF 1
00390
00391
00392 #define _GLIBCPP_HAVE_EXPL 1
00393
00394
00395 #define _GLIBCPP_HAVE_FABSF 1
00396
00397
00398 #define _GLIBCPP_HAVE_FABSL 1
00399
00400
00401 #define _GLIBCPP_HAVE_FGETWC 1
00402
00403
00404 #define _GLIBCPP_HAVE_FGETWS 1
00405
00406
00407 #define _GLIBCPP_HAVE_FINITE 1
00408
00409
00410 #define _GLIBCPP_HAVE_FINITEF 1
00411
00412
00413 #define _GLIBCPP_HAVE_FINITEL 1
00414
00415
00416 #define _GLIBCPP_HAVE_FLOORF 1
00417
00418
00419 #define _GLIBCPP_HAVE_FLOORL 1
00420
00421
00422 #define _GLIBCPP_HAVE_FMODF 1
00423
00424
00425 #define _GLIBCPP_HAVE_FMODL 1
00426
00427
00428
00429
00430
00431 #define _GLIBCPP_HAVE_FPUTWC 1
00432
00433
00434 #define _GLIBCPP_HAVE_FPUTWS 1
00435
00436
00437 #define _GLIBCPP_HAVE_FREXPF 1
00438
00439
00440 #define _GLIBCPP_HAVE_FREXPL 1
00441
00442
00443 #define _GLIBCPP_HAVE_FWIDE 1
00444
00445
00446 #define _GLIBCPP_HAVE_FWPRINTF 1
00447
00448
00449 #define _GLIBCPP_HAVE_FWSCANF 1
00450
00451
00452 #define _GLIBCPP_HAVE_GETPAGESIZE 1
00453
00454
00455 #define _GLIBCPP_HAVE_GETWC 1
00456
00457
00458 #define _GLIBCPP_HAVE_GETWCHAR 1
00459
00460
00461 #define _GLIBCPP_HAVE_HYPOT 1
00462
00463
00464 #define _GLIBCPP_HAVE_HYPOTF 1
00465
00466
00467 #define _GLIBCPP_HAVE_HYPOTL 1
00468
00469
00470 #define _GLIBCPP_HAVE_ICONV 1
00471
00472
00473 #define _GLIBCPP_HAVE_ICONV_CLOSE 1
00474
00475
00476 #define _GLIBCPP_HAVE_ICONV_OPEN 1
00477
00478
00479 #define _GLIBCPP_HAVE_ISATTY 1
00480
00481
00482 #define _GLIBCPP_HAVE_ISINF 1
00483
00484
00485 #define _GLIBCPP_HAVE_ISINFF 1
00486
00487
00488 #define _GLIBCPP_HAVE_ISINFL 1
00489
00490
00491 #define _GLIBCPP_HAVE_ISNAN 1
00492
00493
00494 #define _GLIBCPP_HAVE_ISNANF 1
00495
00496
00497 #define _GLIBCPP_HAVE_ISNANL 1
00498
00499
00500 #define _GLIBCPP_HAVE_LDEXPF 1
00501
00502
00503 #define _GLIBCPP_HAVE_LDEXPL 1
00504
00505
00506 #define _GLIBCPP_HAVE_LOG10F 1
00507
00508
00509 #define _GLIBCPP_HAVE_LOG10L 1
00510
00511
00512 #define _GLIBCPP_HAVE_LOGF 1
00513
00514
00515 #define _GLIBCPP_HAVE_LOGL 1
00516
00517
00518 #define _GLIBCPP_HAVE_MBRLEN 1
00519
00520
00521 #define _GLIBCPP_HAVE_MBRTOWC 1
00522
00523
00524 #define _GLIBCPP_HAVE_MBSINIT 1
00525
00526
00527 #define _GLIBCPP_HAVE_MBSRTOWCS 1
00528
00529
00530 #define _GLIBCPP_HAVE_MODFF 1
00531
00532
00533 #define _GLIBCPP_HAVE_MODFL 1
00534
00535
00536 #define _GLIBCPP_HAVE_NAN 1
00537
00538
00539 #define _GLIBCPP_HAVE_NL_LANGINFO 1
00540
00541
00542 #define _GLIBCPP_HAVE_POWF 1
00543
00544
00545 #define _GLIBCPP_HAVE_POWL 1
00546
00547
00548 #define _GLIBCPP_HAVE_PUTWC 1
00549
00550
00551 #define _GLIBCPP_HAVE_PUTWCHAR 1
00552
00553
00554
00555
00556
00557 #define _GLIBCPP_HAVE_SETENV 1
00558
00559
00560 #define _GLIBCPP_HAVE_SINCOS 1
00561
00562
00563 #define _GLIBCPP_HAVE_SINCOSF 1
00564
00565
00566 #define _GLIBCPP_HAVE_SINCOSL 1
00567
00568
00569 #define _GLIBCPP_HAVE_SINF 1
00570
00571
00572 #define _GLIBCPP_HAVE_SINHF 1
00573
00574
00575 #define _GLIBCPP_HAVE_SINHL 1
00576
00577
00578 #define _GLIBCPP_HAVE_SINL 1
00579
00580
00581 #define _GLIBCPP_HAVE_SQRTF 1
00582
00583
00584 #define _GLIBCPP_HAVE_SQRTL 1
00585
00586
00587 #define _GLIBCPP_HAVE_STRTOF 1
00588
00589
00590 #define _GLIBCPP_HAVE_STRTOLD 1
00591
00592
00593 #define _GLIBCPP_HAVE_SWPRINTF 1
00594
00595
00596 #define _GLIBCPP_HAVE_SWSCANF 1
00597
00598
00599 #define _GLIBCPP_HAVE_TANF 1
00600
00601
00602 #define _GLIBCPP_HAVE_TANHF 1
00603
00604
00605 #define _GLIBCPP_HAVE_TANHL 1
00606
00607
00608 #define _GLIBCPP_HAVE_TANL 1
00609
00610
00611 #define _GLIBCPP_HAVE_UNGETWC 1
00612
00613
00614 #define _GLIBCPP_HAVE_VFWPRINTF 1
00615
00616
00617 #define _GLIBCPP_HAVE_VFWSCANF 1
00618
00619
00620 #define _GLIBCPP_HAVE_VSWPRINTF 1
00621
00622
00623 #define _GLIBCPP_HAVE_VSWSCANF 1
00624
00625
00626 #define _GLIBCPP_HAVE_VWPRINTF 1
00627
00628
00629 #define _GLIBCPP_HAVE_VWSCANF 1
00630
00631
00632 #define _GLIBCPP_HAVE_WCRTOMB 1
00633
00634
00635 #define _GLIBCPP_HAVE_WCSCAT 1
00636
00637
00638 #define _GLIBCPP_HAVE_WCSCHR 1
00639
00640
00641 #define _GLIBCPP_HAVE_WCSCMP 1
00642
00643
00644 #define _GLIBCPP_HAVE_WCSCOLL 1
00645
00646
00647 #define _GLIBCPP_HAVE_WCSCPY 1
00648
00649
00650 #define _GLIBCPP_HAVE_WCSCSPN 1
00651
00652
00653 #define _GLIBCPP_HAVE_WCSFTIME 1
00654
00655
00656 #define _GLIBCPP_HAVE_WCSLEN 1
00657
00658
00659 #define _GLIBCPP_HAVE_WCSNCAT 1
00660
00661
00662 #define _GLIBCPP_HAVE_WCSNCMP 1
00663
00664
00665 #define _GLIBCPP_HAVE_WCSNCPY 1
00666
00667
00668 #define _GLIBCPP_HAVE_WCSPBRK 1
00669
00670
00671 #define _GLIBCPP_HAVE_WCSRCHR 1
00672
00673
00674 #define _GLIBCPP_HAVE_WCSRTOMBS 1
00675
00676
00677 #define _GLIBCPP_HAVE_WCSSPN 1
00678
00679
00680 #define _GLIBCPP_HAVE_WCSSTR 1
00681
00682
00683 #define _GLIBCPP_HAVE_WCSTOD 1
00684
00685
00686 #define _GLIBCPP_HAVE_WCSTOF 1
00687
00688
00689 #define _GLIBCPP_HAVE_WCSTOK 1
00690
00691
00692 #define _GLIBCPP_HAVE_WCSTOL 1
00693
00694
00695 #define _GLIBCPP_HAVE_WCSTOUL 1
00696
00697
00698 #define _GLIBCPP_HAVE_WCSXFRM 1
00699
00700
00701 #define _GLIBCPP_HAVE_WCTOB 1
00702
00703
00704 #define _GLIBCPP_HAVE_WMEMCHR 1
00705
00706
00707 #define _GLIBCPP_HAVE_WMEMCMP 1
00708
00709
00710 #define _GLIBCPP_HAVE_WMEMCPY 1
00711
00712
00713 #define _GLIBCPP_HAVE_WMEMMOVE 1
00714
00715
00716 #define _GLIBCPP_HAVE_WMEMSET 1
00717
00718
00719 #define _GLIBCPP_HAVE_WPRINTF 1
00720
00721
00722 #define _GLIBCPP_HAVE_WSCANF 1
00723
00724
00725 #define _GLIBCPP_HAVE_ENDIAN_H 1
00726
00727
00728 #define _GLIBCPP_HAVE_FLOAT_H 1
00729
00730
00731
00732
00733
00734 #define _GLIBCPP_HAVE_GCONV_H 1
00735
00736
00737
00738
00739
00740 #define _GLIBCPP_HAVE_INTTYPES_H 1
00741
00742
00743 #define _GLIBCPP_HAVE_LOCALE_H 1
00744
00745
00746
00747
00748
00749
00750
00751
00752
00753
00754
00755 #define _GLIBCPP_HAVE_STDLIB_H 1
00756
00757
00758 #define _GLIBCPP_HAVE_STRING_H 1
00759
00760
00761
00762
00763
00764
00765
00766
00767 #define _GLIBCPP_HAVE_SYS_RESOURCE_H 1
00768
00769
00770 #define _GLIBCPP_HAVE_SYS_TYPES_H 1
00771
00772
00773 #define _GLIBCPP_HAVE_UNISTD_H 1
00774
00775
00776 #define _GLIBCPP_HAVE_WCHAR_H 1
00777
00778
00779 #define _GLIBCPP_HAVE_WCTYPE_H 1
00780
00781
00782 #define _GLIBCPP_HAVE_LIBM 1
00783
00784
00785 #define _GLIBCPP_PACKAGE "libstdc++"
00786
00787
00788 #define _GLIBCPP_VERSION "3.2.3"
00789
00790
00791
00792
00793
00794 #define _GLIBCPP_HAVE_SIGSETJMP 1
00795
00796
00797 #define _GLIBCPP_HAVE_MEMLIMIT_DATA 1
00798
00799
00800 #define _GLIBCPP_HAVE_MEMLIMIT_RSS 1
00801
00802
00803 #define _GLIBCPP_HAVE_MEMLIMIT_VMEM 0
00804
00805
00806 #define _GLIBCPP_HAVE_MEMLIMIT_AS 1
00807
00808
00809
00810
00811
00812 #if defined (_GLIBCPP_HAVE__ISNAN) && ! defined (_GLIBCPP_HAVE_ISNAN)
00813 # define _GLIBCPP_HAVE_ISNAN 1
00814 # define isnan _isnan
00815 #endif
00816
00817 #if defined (_GLIBCPP_HAVE__ISNANF) && ! defined (_GLIBCPP_HAVE_ISNANF)
00818 # define _GLIBCPP_HAVE_ISNANF 1
00819 # define isnanf _isnanf
00820 #endif
00821
00822 #if defined (_GLIBCPP_HAVE__ISNANL) && ! defined (_GLIBCPP_HAVE_ISNANL)
00823 # define _GLIBCPP_HAVE_ISNANL 1
00824 # define isnanl _isnanl
00825 #endif
00826
00827 #if defined (_GLIBCPP_HAVE__ISINF) && ! defined (_GLIBCPP_HAVE_ISINF)
00828 # define _GLIBCPP_HAVE_ISINF 1
00829 # define isinf _isinf
00830 #endif
00831
00832 #if defined (_GLIBCPP_HAVE__ISINFF) && ! defined (_GLIBCPP_HAVE_ISINFF)
00833 # define _GLIBCPP_HAVE_ISINFF 1
00834 # define isinff _isinff
00835 #endif
00836
00837 #if defined (_GLIBCPP_HAVE__ISINFL) && ! defined (_GLIBCPP_HAVE_ISINFL)
00838 # define _GLIBCPP_HAVE_ISINFL 1
00839 # define isinfl _isinfl
00840 #endif
00841
00842 #if defined (_GLIBCPP_HAVE__COPYSIGN) && ! defined (_GLIBCPP_HAVE_COPYSIGN)
00843 # define _GLIBCPP_HAVE_COPYSIGN 1
00844 # define copysign _copysign
00845 #endif
00846
00847 #if defined (_GLIBCPP_HAVE__COPYSIGNL) && ! defined (_GLIBCPP_HAVE_COPYSIGNL)
00848 # define _GLIBCPP_HAVE_COPYSIGNL 1
00849 # define copysignl _copysignl
00850 #endif
00851
00852 #if defined (_GLIBCPP_HAVE__COSF) && ! defined (_GLIBCPP_HAVE_COSF)
00853 # define _GLIBCPP_HAVE_COSF 1
00854 # define cosf _cosf
00855 #endif
00856
00857 #if defined (_GLIBCPP_HAVE__ACOSF) && ! defined (_GLIBCPP_HAVE_ACOSF)
00858 # define _GLIBCPP_HAVE_ACOSF 1
00859 # define acosf _acosf
00860 #endif
00861
00862 #if defined (_GLIBCPP_HAVE__ACOSL) && ! defined (_GLIBCPP_HAVE_ACOSL)
00863 # define _GLIBCPP_HAVE_ACOSL 1
00864 # define acosl _acosl
00865 #endif
00866
00867 #if defined (_GLIBCPP_HAVE__ASINF) && ! defined (_GLIBCPP_HAVE_ASINF)
00868 # define _GLIBCPP_HAVE_ASINF 1
00869 # define asinf _asinf
00870 #endif
00871
00872 #if defined (_GLIBCPP_HAVE__ASINL) && ! defined (_GLIBCPP_HAVE_ASINL)
00873 # define _GLIBCPP_HAVE_ASINL 1
00874 # define asinl _asinl
00875 #endif
00876
00877 #if defined (_GLIBCPP_HAVE__ATANF) && ! defined (_GLIBCPP_HAVE_ATANF)
00878 # define _GLIBCPP_HAVE_ATANF 1
00879 # define atanf _atanf
00880 #endif
00881
00882 #if defined (_GLIBCPP_HAVE__ATANL) && ! defined (_GLIBCPP_HAVE_ATANL)
00883 # define _GLIBCPP_HAVE_ATANL 1
00884 # define atanl _atanl
00885 #endif
00886
00887 #if defined (_GLIBCPP_HAVE__CEILF) && ! defined (_GLIBCPP_HAVE_CEILF)
00888 # define _GLIBCPP_HAVE_CEILF 1
00889 # define aceil _ceilf
00890 #endif
00891
00892 #if defined (_GLIBCPP_HAVE__CEILL) && ! defined (_GLIBCPP_HAVE_CEILL)
00893 # define _GLIBCPP_HAVE_CEILL 1
00894 # define aceil _ceill
00895 #endif
00896
00897 #if defined (_GLIBCPP_HAVE__COSHF) && ! defined (_GLIBCPP_HAVE_COSHF)
00898 # define _GLIBCPP_HAVE_COSHF 1
00899 # define coshf _coshf
00900 #endif
00901
00902 #if defined (_GLIBCPP_HAVE__COSL) && ! defined (_GLIBCPP_HAVE_COSL)
00903 # define _GLIBCPP_HAVE_COSL 1
00904 # define cosl _cosl
00905 #endif
00906
00907 #if defined (_GLIBCPP_HAVE__LOGF) && ! defined (_GLIBCPP_HAVE_LOGF)
00908 # define _GLIBCPP_HAVE_LOGF 1
00909 # define logf _logf
00910 #endif
00911
00912 #if defined (_GLIBCPP_HAVE__COSHL) && ! defined (_GLIBCPP_HAVE_COSHL)
00913 # define _GLIBCPP_HAVE_COSHL 1
00914 # define coshl _coshl
00915 #endif
00916
00917 #if defined (_GLIBCPP_HAVE__EXPF) && ! defined (_GLIBCPP_HAVE_EXPF)
00918 # define _GLIBCPP_HAVE_EXPF 1
00919 # define expf _expf
00920 #endif
00921
00922 #if defined (_GLIBCPP_HAVE__EXPL) && ! defined (_GLIBCPP_HAVE_EXPL)
00923 # define _GLIBCPP_HAVE_EXPL 1
00924 # define expl _expl
00925 #endif
00926
00927 #if defined (_GLIBCPP_HAVE__FABSF) && ! defined (_GLIBCPP_HAVE_FABSF)
00928 # define _GLIBCPP_HAVE_FABSF 1
00929 # define fabsf _fabsf
00930 #endif
00931
00932 #if defined (_GLIBCPP_HAVE__FABSL) && ! defined (_GLIBCPP_HAVE_FABSL)
00933 # define _GLIBCPP_HAVE_FABSL 1
00934 # define fabsl _fabsl
00935 #endif
00936
00937 #if defined (_GLIBCPP_HAVE__FLOORF) && ! defined (_GLIBCPP_HAVE_FLOORF)
00938 # define _GLIBCPP_HAVE_FLOORF 1
00939 # define floorf _floorf
00940 #endif
00941
00942 #if defined (_GLIBCPP_HAVE__FLOORL) && ! defined (_GLIBCPP_HAVE_FLOORL)
00943 # define _GLIBCPP_HAVE_FLOORL 1
00944 # define floorl _floorl
00945 #endif
00946
00947 #if defined (_GLIBCPP_HAVE__FMODF) && ! defined (_GLIBCPP_HAVE_FMODF)
00948 # define _GLIBCPP_HAVE_FMODF 1
00949 # define fmodf _fmodf
00950 #endif
00951
00952 #if defined (_GLIBCPP_HAVE__FMODL) && ! defined (_GLIBCPP_HAVE_FMODL)
00953 # define _GLIBCPP_HAVE_FMODL 1
00954 # define fmodl _fmodl
00955 #endif
00956
00957 #if defined (_GLIBCPP_HAVE__FREXPF) && ! defined (_GLIBCPP_HAVE_FREXPF)
00958 # define _GLIBCPP_HAVE_FREXPF 1
00959 # define frexpf _frexpf
00960 #endif
00961
00962 #if defined (_GLIBCPP_HAVE__FREXPL) && ! defined (_GLIBCPP_HAVE_FREXPL)
00963 # define _GLIBCPP_HAVE_FREXPL 1
00964 # define frexpl _frexpl
00965 #endif
00966
00967 #if defined (_GLIBCPP_HAVE__LDEXPF) && ! defined (_GLIBCPP_HAVE_LDEXPF)
00968 # define _GLIBCPP_HAVE_LDEXPF 1
00969 # define ldexpf _ldexpf
00970 #endif
00971
00972 #if defined (_GLIBCPP_HAVE__LDEXPL) && ! defined (_GLIBCPP_HAVE_LDEXPL)
00973 # define _GLIBCPP_HAVE_LDEXPL 1
00974 # define ldexpl _ldexpl
00975 #endif
00976
00977 #if defined (_GLIBCPP_HAVE__LOG10F) && ! defined (_GLIBCPP_HAVE_LOG10F)
00978 # define _GLIBCPP_HAVE_LOG10F 1
00979 # define log10f _log10f
00980 #endif
00981
00982 #if defined (_GLIBCPP_HAVE__LOGL) && ! defined (_GLIBCPP_HAVE_LOGL)
00983 # define _GLIBCPP_HAVE_LOGL 1
00984 # define logl _logl
00985 #endif
00986
00987 #if defined (_GLIBCPP_HAVE__POWF) && ! defined (_GLIBCPP_HAVE_POWF)
00988 # define _GLIBCPP_HAVE_POWF 1
00989 # define powf _powf
00990 #endif
00991
00992 #if defined (_GLIBCPP_HAVE__LOG10L) && ! defined (_GLIBCPP_HAVE_LOG10L)
00993 # define _GLIBCPP_HAVE_LOG10L 1
00994 # define log10l _log10l
00995 #endif
00996
00997 #if defined (_GLIBCPP_HAVE__MODF) && ! defined (_GLIBCPP_HAVE_MODF)
00998 # define _GLIBCPP_HAVE_MODF 1
00999 # define modf _modf
01000 #endif
01001
01002 #if defined (_GLIBCPP_HAVE__MODL) && ! defined (_GLIBCPP_HAVE_MODL)
01003 # define _GLIBCPP_HAVE_MODL 1
01004 # define modl _modl
01005 #endif
01006
01007 #if defined (_GLIBCPP_HAVE__SINF) && ! defined (_GLIBCPP_HAVE_SINF)
01008 # define _GLIBCPP_HAVE_SINF 1
01009 # define sinf _sinf
01010 #endif
01011
01012 #if defined (_GLIBCPP_HAVE__POWL) && ! defined (_GLIBCPP_HAVE_POWL)
01013 # define _GLIBCPP_HAVE_POWL 1
01014 # define powl _powl
01015 #endif
01016
01017 #if defined (_GLIBCPP_HAVE__SINHF) && ! defined (_GLIBCPP_HAVE_SINHF)
01018 # define _GLIBCPP_HAVE_SINHF 1
01019 # define sinhf _sinhf
01020 #endif
01021
01022 #if defined (_GLIBCPP_HAVE__SINL) && ! defined (_GLIBCPP_HAVE_SINL)
01023 # define _GLIBCPP_HAVE_SINL 1
01024 # define sinl _sinl
01025 #endif
01026
01027 #if defined (_GLIBCPP_HAVE__SQRTF) && ! defined (_GLIBCPP_HAVE_SQRTF)
01028 # define _GLIBCPP_HAVE_SQRTF 1
01029 # define sqrtf _sqrtf
01030 #endif
01031
01032 #if defined (_GLIBCPP_HAVE__SINHL) && ! defined (_GLIBCPP_HAVE_SINHL)
01033 # define _GLIBCPP_HAVE_SINHL 1
01034 # define sinhl _sinhl
01035 #endif
01036
01037 #if defined (_GLIBCPP_HAVE__TANF) && ! defined (_GLIBCPP_HAVE_TANF)
01038 # define _GLIBCPP_HAVE_TANF 1
01039 # define tanf _tanf
01040 #endif
01041
01042 #if defined (_GLIBCPP_HAVE__SQRTL) && ! defined (_GLIBCPP_HAVE_SQRTL)
01043 # define _GLIBCPP_HAVE_SQRTL 1
01044 # define sqrtl _sqrtl
01045 #endif
01046
01047 #if defined (_GLIBCPP_HAVE__TANHF) && ! defined (_GLIBCPP_HAVE_TANHF)
01048 # define _GLIBCPP_HAVE_TANHF 1
01049 # define tanhf _tanhf
01050 #endif
01051
01052 #if defined (_GLIBCPP_HAVE__TANL) && ! defined (_GLIBCPP_HAVE_TANL)
01053 # define _GLIBCPP_HAVE_TANF 1
01054 # define tanf _tanf
01055 #endif
01056
01057 #if defined (_GLIBCPP_HAVE__STRTOF) && ! defined (_GLIBCPP_HAVE_STRTOF)
01058 # define _GLIBCPP_HAVE_STRTOF 1
01059 # define strtof _strtof
01060 #endif
01061
01062 #if defined (_GLIBCPP_HAVE__TANHL) && ! defined (_GLIBCPP_HAVE_TANHL)
01063 # define _GLIBCPP_HAVE_TANHL 1
01064 # define tanhl _tanhl
01065 #endif
01066
01067 #if defined (_GLIBCPP_HAVE__STRTOLD) && ! defined (_GLIBCPP_HAVE_STRTOLD)
01068 # define _GLIBCPP_HAVE_STRTOLD 1
01069 # define strtold _strtold
01070 #endif
01071
01072 #if defined (_GLIBCPP_HAVE__SINCOS) && ! defined (_GLIBCPP_HAVE_SINCOS)
01073 # define _GLIBCPP_HAVE_SINCOS 1
01074 # define sincos _sincos
01075 #endif
01076
01077 #if defined (_GLIBCPP_HAVE__SINCOSF) && ! defined (_GLIBCPP_HAVE_SINCOSF)
01078 # define _GLIBCPP_HAVE_SINCOSF 1
01079 # define sincosf _sincosf
01080 #endif
01081
01082 #if defined (_GLIBCPP_HAVE__SINCOSL) && ! defined (_GLIBCPP_HAVE_SINCOSL)
01083 # define _GLIBCPP_HAVE_SINCOSL 1
01084 # define sincosl _sincosl
01085 #endif
01086
01087 #if defined (_GLIBCPP_HAVE__FINITE) && ! defined (_GLIBCPP_HAVE_FINITE)
01088 # define _GLIBCPP_HAVE_FINITE 1
01089 # define finite _finite
01090 #endif
01091
01092 #if defined (_GLIBCPP_HAVE__FINITEF) && ! defined (_GLIBCPP_HAVE_FINITEF)
01093 # define _GLIBCPP_HAVE_FINITEF 1
01094 # define finitef _finitef
01095 #endif
01096
01097 #if defined (_GLIBCPP_HAVE__FINITEL) && ! defined (_GLIBCPP_HAVE_FINITEL)
01098 # define _GLIBCPP_HAVE_FINITEL 1
01099 # define finitel _finitel
01100 #endif
01101
01102 #if defined (_GLIBCPP_HAVE__QFINITE) && ! defined (_GLIBCPP_HAVE_QFINITE)
01103 # define _GLIBCPP_HAVE_QFINITE 1
01104 # define qfinite _qfinite
01105 #endif
01106
01107 #if defined (_GLIBCPP_HAVE__FPCLASS) && ! defined (_GLIBCPP_HAVE_FPCLASS)
01108 # define _GLIBCPP_HAVE_FPCLASS 1
01109 # define fpclass _fpclass
01110 #endif
01111
01112 #if defined (_GLIBCPP_HAVE__QFPCLASS) && ! defined (_GLIBCPP_HAVE_QFPCLASS)
01113 # define _GLIBCPP_HAVE_QFPCLASS 1
01114 # define qfpclass _qfpclass
01115 #endif
01116
01117 #endif // _CPP_CPPCONFIG_
01118
Generated on Wed Sep 29 13:54:47 2004 for libstdc++-v3 Source by
1.3.7