libstdc++
c++config.h
Go to the documentation of this file.
1 // Predefined symbols and macros -*- C++ -*-
2 
3 // Copyright (C) 1997-2015 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10 
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19 
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
24 
25 /** @file bits/c++config.h
26  * This is an internal header file, included by other library headers.
27  * Do not attempt to use it directly. @headername{iosfwd}
28  */
29 
30 #ifndef _GLIBCXX_CXX_CONFIG_H
31 #define _GLIBCXX_CXX_CONFIG_H 1
32 
33 // The current version of the C++ library in compressed ISO date format.
34 #define __GLIBCXX__ 20171010
35 
36 // Macros for various attributes.
37 // _GLIBCXX_PURE
38 // _GLIBCXX_CONST
39 // _GLIBCXX_NORETURN
40 // _GLIBCXX_NOTHROW
41 // _GLIBCXX_VISIBILITY
42 #ifndef _GLIBCXX_PURE
43 # define _GLIBCXX_PURE __attribute__ ((__pure__))
44 #endif
45 
46 #ifndef _GLIBCXX_CONST
47 # define _GLIBCXX_CONST __attribute__ ((__const__))
48 #endif
49 
50 #ifndef _GLIBCXX_NORETURN
51 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
52 #endif
53 
54 // See below for C++
55 #ifndef _GLIBCXX_NOTHROW
56 # ifndef __cplusplus
57 # define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
58 # endif
59 #endif
60 
61 // Macros for visibility attributes.
62 // _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
63 // _GLIBCXX_VISIBILITY
64 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
65 
66 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
67 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
68 #else
69 // If this is not supplied by the OS-specific or CPU-specific
70 // headers included below, it will be defined to an empty default.
71 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
72 #endif
73 
74 // Macros for deprecated attributes.
75 // _GLIBCXX_USE_DEPRECATED
76 // _GLIBCXX_DEPRECATED
77 #ifndef _GLIBCXX_USE_DEPRECATED
78 # define _GLIBCXX_USE_DEPRECATED 1
79 #endif
80 
81 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
82 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
83 #else
84 # define _GLIBCXX_DEPRECATED
85 #endif
86 
87 // Macros for ABI tag attributes.
88 #ifndef _GLIBCXX_ABI_TAG_CXX11
89 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
90 #endif
91 
92 
93 #if __cplusplus
94 
95 // Macro for constexpr, to support in mixed 03/0x mode.
96 #ifndef _GLIBCXX_CONSTEXPR
97 # if __cplusplus >= 201103L
98 # define _GLIBCXX_CONSTEXPR constexpr
99 # define _GLIBCXX_USE_CONSTEXPR constexpr
100 # else
101 # define _GLIBCXX_CONSTEXPR
102 # define _GLIBCXX_USE_CONSTEXPR const
103 # endif
104 #endif
105 
106 #ifndef _GLIBCXX14_CONSTEXPR
107 # if __cplusplus >= 201402L
108 # define _GLIBCXX14_CONSTEXPR constexpr
109 # else
110 # define _GLIBCXX14_CONSTEXPR
111 # endif
112 #endif
113 
114 // Macro for noexcept, to support in mixed 03/0x mode.
115 #ifndef _GLIBCXX_NOEXCEPT
116 # if __cplusplus >= 201103L
117 # define _GLIBCXX_NOEXCEPT noexcept
118 # define _GLIBCXX_USE_NOEXCEPT noexcept
119 # define _GLIBCXX_THROW(_EXC)
120 # else
121 # define _GLIBCXX_NOEXCEPT
122 # define _GLIBCXX_USE_NOEXCEPT throw()
123 # define _GLIBCXX_THROW(_EXC) throw(_EXC)
124 # endif
125 #endif
126 
127 #ifndef _GLIBCXX_NOTHROW
128 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
129 #endif
130 
131 #ifndef _GLIBCXX_THROW_OR_ABORT
132 # if __cpp_exceptions
133 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
134 # else
135 # define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
136 # endif
137 #endif
138 
139 // Macro for extern template, ie controling template linkage via use
140 // of extern keyword on template declaration. As documented in the g++
141 // manual, it inhibits all implicit instantiations and is used
142 // throughout the library to avoid multiple weak definitions for
143 // required types that are already explicitly instantiated in the
144 // library binary. This substantially reduces the binary size of
145 // resulting executables.
146 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
147 // templates only in basic_string, thus activating its debug-mode
148 // checks even at -O0.
149 # define _GLIBCXX_EXTERN_TEMPLATE 1
150 
151 /*
152  Outline of libstdc++ namespaces.
153 
154  namespace std
155  {
156  namespace __debug { }
157  namespace __parallel { }
158  namespace __profile { }
159  namespace __cxx1998 { }
160 
161  namespace __detail { }
162 
163  namespace rel_ops { }
164 
165  namespace tr1
166  {
167  namespace placeholders { }
168  namespace regex_constants { }
169  namespace __detail { }
170  }
171 
172  namespace tr2 { }
173 
174  namespace decimal { }
175 
176  namespace chrono { }
177  namespace placeholders { }
178  namespace regex_constants { }
179  namespace this_thread { }
180  inline namespace literals {
181  inline namespace chrono_literals { }
182  inline namespace complex_literals { }
183  inline namespace string_literals { }
184  }
185  }
186 
187  namespace abi { }
188 
189  namespace __gnu_cxx
190  {
191  namespace __detail { }
192  }
193 
194  For full details see:
195  http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
196 */
197 namespace std
198 {
199  typedef __SIZE_TYPE__ size_t;
200  typedef __PTRDIFF_TYPE__ ptrdiff_t;
201 
202 #if __cplusplus >= 201103L
203  typedef decltype(nullptr) nullptr_t;
204 #endif
205 }
206 
207 # define _GLIBCXX_USE_DUAL_ABI 1
208 
209 #if ! _GLIBCXX_USE_DUAL_ABI
210 // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
211 # undef _GLIBCXX_USE_CXX11_ABI
212 #endif
213 
214 #ifndef _GLIBCXX_USE_CXX11_ABI
215 # define _GLIBCXX_USE_CXX11_ABI 1
216 #endif
217 
218 #if _GLIBCXX_USE_CXX11_ABI
219 namespace std
220 {
221  inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
222 }
223 namespace __gnu_cxx
224 {
225  inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
226 }
227 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11::
228 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 {
229 # define _GLIBCXX_END_NAMESPACE_CXX11 }
230 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11
231 #else
232 # define _GLIBCXX_NAMESPACE_CXX11
233 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11
234 # define _GLIBCXX_END_NAMESPACE_CXX11
235 # define _GLIBCXX_DEFAULT_ABI_TAG
236 #endif
237 
238 
239 // Defined if inline namespaces are used for versioning.
240 # define _GLIBCXX_INLINE_VERSION 0
241 
242 // Inline namespace for symbol versioning.
243 #if _GLIBCXX_INLINE_VERSION
244 
245 namespace std
246 {
247  inline namespace __7 { }
248 
249  namespace rel_ops { inline namespace __7 { } }
250 
251  namespace tr1
252  {
253  inline namespace __7 { }
254  namespace placeholders { inline namespace __7 { } }
255  namespace regex_constants { inline namespace __7 { } }
256  namespace __detail { inline namespace __7 { } }
257  }
258 
259  namespace tr2
260  { inline namespace __7 { } }
261 
262  namespace decimal { inline namespace __7 { } }
263 
264  namespace chrono { inline namespace __7 { } }
265  namespace placeholders { inline namespace __7 { } }
266  namespace regex_constants { inline namespace __7 { } }
267  namespace this_thread { inline namespace __7 { } }
268 
269  inline namespace literals {
270  inline namespace chrono_literals { inline namespace __7 { } }
271  inline namespace complex_literals { inline namespace __7 { } }
272  inline namespace string_literals { inline namespace __7 { } }
273  }
274 
275  namespace __detail { inline namespace __7 { } }
276 }
277 
278 namespace __gnu_cxx
279 {
280  inline namespace __7 { }
281  namespace __detail { inline namespace __7 { } }
282 }
283 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __7 {
284 # define _GLIBCXX_END_NAMESPACE_VERSION }
285 #else
286 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
287 # define _GLIBCXX_END_NAMESPACE_VERSION
288 #endif
289 
290 
291 // Inline namespaces for special modes: debug, parallel, profile.
292 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL) \
293  || defined(_GLIBCXX_PROFILE)
294 namespace std
295 {
296  // Non-inline namespace for components replaced by alternates in active mode.
297  namespace __cxx1998
298  {
299 # if _GLIBCXX_INLINE_VERSION
300  inline namespace __7 { }
301 # endif
302 
303 # if _GLIBCXX_USE_CXX11_ABI
304  inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
305 # endif
306  }
307 
308  // Inline namespace for debug mode.
309 # ifdef _GLIBCXX_DEBUG
310  inline namespace __debug { }
311 # endif
312 
313  // Inline namespaces for parallel mode.
314 # ifdef _GLIBCXX_PARALLEL
315  inline namespace __parallel { }
316 # endif
317 
318  // Inline namespaces for profile mode
319 # ifdef _GLIBCXX_PROFILE
320  inline namespace __profile { }
321 # endif
322 }
323 
324 // Check for invalid usage and unsupported mixed-mode use.
325 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
326 # error illegal use of multiple inlined namespaces
327 # endif
328 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_DEBUG)
329 # error illegal use of multiple inlined namespaces
330 # endif
331 # if defined(_GLIBCXX_PROFILE) && defined(_GLIBCXX_PARALLEL)
332 # error illegal use of multiple inlined namespaces
333 # endif
334 
335 // Check for invalid use due to lack for weak symbols.
336 # if __NO_INLINE__ && !__GXX_WEAK__
337 # warning currently using inlined namespace mode which may fail \
338  without inlining due to lack of weak symbols
339 # endif
340 #endif
341 
342 // Macros for namespace scope. Either namespace std:: or the name
343 // of some nested namespace within it corresponding to the active mode.
344 // _GLIBCXX_STD_A
345 // _GLIBCXX_STD_C
346 //
347 // Macros for opening/closing conditional namespaces.
348 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
349 // _GLIBCXX_END_NAMESPACE_ALGO
350 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
351 // _GLIBCXX_END_NAMESPACE_CONTAINER
352 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PROFILE)
353 # define _GLIBCXX_STD_C __cxx1998
354 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
355  namespace _GLIBCXX_STD_C { _GLIBCXX_BEGIN_NAMESPACE_VERSION
356 # define _GLIBCXX_END_NAMESPACE_CONTAINER \
357  _GLIBCXX_END_NAMESPACE_VERSION }
358 # undef _GLIBCXX_EXTERN_TEMPLATE
359 # define _GLIBCXX_EXTERN_TEMPLATE -1
360 #endif
361 
362 #ifdef _GLIBCXX_PARALLEL
363 # define _GLIBCXX_STD_A __cxx1998
364 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
365  namespace _GLIBCXX_STD_A { _GLIBCXX_BEGIN_NAMESPACE_VERSION
366 # define _GLIBCXX_END_NAMESPACE_ALGO \
367  _GLIBCXX_END_NAMESPACE_VERSION }
368 #endif
369 
370 #ifndef _GLIBCXX_STD_A
371 # define _GLIBCXX_STD_A std
372 #endif
373 
374 #ifndef _GLIBCXX_STD_C
375 # define _GLIBCXX_STD_C std
376 #endif
377 
378 #ifndef _GLIBCXX_BEGIN_NAMESPACE_ALGO
379 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
380 #endif
381 
382 #ifndef _GLIBCXX_END_NAMESPACE_ALGO
383 # define _GLIBCXX_END_NAMESPACE_ALGO
384 #endif
385 
386 #ifndef _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
387 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
388 #endif
389 
390 #ifndef _GLIBCXX_END_NAMESPACE_CONTAINER
391 # define _GLIBCXX_END_NAMESPACE_CONTAINER
392 #endif
393 
394 // GLIBCXX_ABI Deprecated
395 // Define if compatibility should be provided for -mlong-double-64.
396 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
397 
398 // Inline namespace for long double 128 mode.
399 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
400 namespace std
401 {
402  inline namespace __gnu_cxx_ldbl128 { }
403 }
404 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
405 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
406 # define _GLIBCXX_END_NAMESPACE_LDBL }
407 #else
408 # define _GLIBCXX_NAMESPACE_LDBL
409 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
410 # define _GLIBCXX_END_NAMESPACE_LDBL
411 #endif
412 #if _GLIBCXX_USE_CXX11_ABI
413 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11
414 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11
415 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11
416 #else
417 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL
418 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL
419 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL
420 #endif
421 
422 // Assert.
423 #if !defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_PARALLEL)
424 # define __glibcxx_assert(_Condition)
425 #else
426 namespace std
427 {
428  // Avoid the use of assert, because we're trying to keep the <cassert>
429  // include out of the mix.
430  inline void
431  __replacement_assert(const char* __file, int __line,
432  const char* __function, const char* __condition)
433  {
434  __builtin_printf("%s:%d: %s: Assertion '%s' failed.\n", __file, __line,
435  __function, __condition);
436  __builtin_abort();
437  }
438 }
439 #define __glibcxx_assert(_Condition) \
440  do \
441  { \
442  if (! (_Condition)) \
443  std::__replacement_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
444  #_Condition); \
445  } while (false)
446 #endif
447 
448 // Macros for race detectors.
449 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
450 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
451 // atomic (lock-free) synchronization to race detectors:
452 // the race detector will infer a happens-before arc from the former to the
453 // latter when they share the same argument pointer.
454 //
455 // The most frequent use case for these macros (and the only case in the
456 // current implementation of the library) is atomic reference counting:
457 // void _M_remove_reference()
458 // {
459 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
460 // if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
461 // {
462 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
463 // _M_destroy(__a);
464 // }
465 // }
466 // The annotations in this example tell the race detector that all memory
467 // accesses occurred when the refcount was positive do not race with
468 // memory accesses which occurred after the refcount became zero.
469 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
470 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
471 #endif
472 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
473 # define _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
474 #endif
475 
476 // Macros for C linkage: define extern "C" linkage only when using C++.
477 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
478 # define _GLIBCXX_END_EXTERN_C }
479 
480 #else // !__cplusplus
481 # define _GLIBCXX_BEGIN_EXTERN_C
482 # define _GLIBCXX_END_EXTERN_C
483 #endif
484 
485 
486 // First includes.
487 
488 // Pick up any OS-specific definitions.
489 #include <bits/os_defines.h>
490 
491 // Pick up any CPU-specific definitions.
492 #include <bits/cpu_defines.h>
493 
494 // If platform uses neither visibility nor psuedo-visibility,
495 // specify empty default for namespace annotation macros.
496 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
497 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
498 #endif
499 
500 // Certain function definitions that are meant to be overridable from
501 // user code are decorated with this macro. For some targets, this
502 // macro causes these definitions to be weak.
503 #ifndef _GLIBCXX_WEAK_DEFINITION
504 # define _GLIBCXX_WEAK_DEFINITION
505 #endif
506 
507 
508 // The remainder of the prewritten config is automatic; all the
509 // user hooks are listed above.
510 
511 // Create a boolean flag to be used to determine if --fast-math is set.
512 #ifdef __FAST_MATH__
513 # define _GLIBCXX_FAST_MATH 1
514 #else
515 # define _GLIBCXX_FAST_MATH 0
516 #endif
517 
518 // This marks string literals in header files to be extracted for eventual
519 // translation. It is primarily used for messages in thrown exceptions; see
520 // src/functexcept.cc. We use __N because the more traditional _N is used
521 // for something else under certain OSes (see BADNAMES).
522 #define __N(msgid) (msgid)
523 
524 // For example, <windows.h> is known to #define min and max as macros...
525 #undef min
526 #undef max
527 
528 // End of prewritten config; the settings discovered at configure time follow.
529 /* config.h. Generated from config.h.in by configure. */
530 /* config.h.in. Generated from configure.ac by autoheader. */
531 
532 /* Define to 1 if you have the `acosf' function. */
533 #define _GLIBCXX_HAVE_ACOSF 1
534 
535 /* Define to 1 if you have the `acosl' function. */
536 #define _GLIBCXX_HAVE_ACOSL 1
537 
538 /* Define to 1 if you have the `asinf' function. */
539 #define _GLIBCXX_HAVE_ASINF 1
540 
541 /* Define to 1 if you have the `asinl' function. */
542 #define _GLIBCXX_HAVE_ASINL 1
543 
544 /* Define to 1 if the target assembler supports .symver directive. */
545 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
546 
547 /* Define to 1 if you have the `atan2f' function. */
548 #define _GLIBCXX_HAVE_ATAN2F 1
549 
550 /* Define to 1 if you have the `atan2l' function. */
551 #define _GLIBCXX_HAVE_ATAN2L 1
552 
553 /* Define to 1 if you have the `atanf' function. */
554 #define _GLIBCXX_HAVE_ATANF 1
555 
556 /* Define to 1 if you have the `atanl' function. */
557 #define _GLIBCXX_HAVE_ATANL 1
558 
559 /* Define to 1 if you have the `at_quick_exit' function. */
560 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
561 
562 /* Define to 1 if the target assembler supports thread-local storage. */
563 /* #undef _GLIBCXX_HAVE_CC_TLS */
564 
565 /* Define to 1 if you have the `ceilf' function. */
566 #define _GLIBCXX_HAVE_CEILF 1
567 
568 /* Define to 1 if you have the `ceill' function. */
569 #define _GLIBCXX_HAVE_CEILL 1
570 
571 /* Define to 1 if you have the <complex.h> header file. */
572 #define _GLIBCXX_HAVE_COMPLEX_H 1
573 
574 /* Define to 1 if you have the `cosf' function. */
575 #define _GLIBCXX_HAVE_COSF 1
576 
577 /* Define to 1 if you have the `coshf' function. */
578 #define _GLIBCXX_HAVE_COSHF 1
579 
580 /* Define to 1 if you have the `coshl' function. */
581 #define _GLIBCXX_HAVE_COSHL 1
582 
583 /* Define to 1 if you have the `cosl' function. */
584 #define _GLIBCXX_HAVE_COSL 1
585 
586 /* Define to 1 if you have the <dirent.h> header file. */
587 #define _GLIBCXX_HAVE_DIRENT_H 1
588 
589 /* Define to 1 if you have the <dlfcn.h> header file. */
590 #define _GLIBCXX_HAVE_DLFCN_H 1
591 
592 /* Define if EBADMSG exists. */
593 #define _GLIBCXX_HAVE_EBADMSG 1
594 
595 /* Define if ECANCELED exists. */
596 #define _GLIBCXX_HAVE_ECANCELED 1
597 
598 /* Define if ECHILD exists. */
599 #define _GLIBCXX_HAVE_ECHILD 1
600 
601 /* Define if EIDRM exists. */
602 #define _GLIBCXX_HAVE_EIDRM 1
603 
604 /* Define to 1 if you have the <endian.h> header file. */
605 #define _GLIBCXX_HAVE_ENDIAN_H 1
606 
607 /* Define if ENODATA exists. */
608 #define _GLIBCXX_HAVE_ENODATA 1
609 
610 /* Define if ENOLINK exists. */
611 #define _GLIBCXX_HAVE_ENOLINK 1
612 
613 /* Define if ENOSPC exists. */
614 #define _GLIBCXX_HAVE_ENOSPC 1
615 
616 /* Define if ENOSR exists. */
617 #define _GLIBCXX_HAVE_ENOSR 1
618 
619 /* Define if ENOSTR exists. */
620 #define _GLIBCXX_HAVE_ENOSTR 1
621 
622 /* Define if ENOTRECOVERABLE exists. */
623 #define _GLIBCXX_HAVE_ENOTRECOVERABLE 1
624 
625 /* Define if ENOTSUP exists. */
626 #define _GLIBCXX_HAVE_ENOTSUP 1
627 
628 /* Define if EOVERFLOW exists. */
629 #define _GLIBCXX_HAVE_EOVERFLOW 1
630 
631 /* Define if EOWNERDEAD exists. */
632 #define _GLIBCXX_HAVE_EOWNERDEAD 1
633 
634 /* Define if EPERM exists. */
635 #define _GLIBCXX_HAVE_EPERM 1
636 
637 /* Define if EPROTO exists. */
638 #define _GLIBCXX_HAVE_EPROTO 1
639 
640 /* Define if ETIME exists. */
641 #define _GLIBCXX_HAVE_ETIME 1
642 
643 /* Define if ETIMEDOUT exists. */
644 #define _GLIBCXX_HAVE_ETIMEDOUT 1
645 
646 /* Define if ETXTBSY exists. */
647 #define _GLIBCXX_HAVE_ETXTBSY 1
648 
649 /* Define if EWOULDBLOCK exists. */
650 #define _GLIBCXX_HAVE_EWOULDBLOCK 1
651 
652 /* Define to 1 if you have the <execinfo.h> header file. */
653 #define _GLIBCXX_HAVE_EXECINFO_H 1
654 
655 /* Define to 1 if you have the `expf' function. */
656 #define _GLIBCXX_HAVE_EXPF 1
657 
658 /* Define to 1 if you have the `expl' function. */
659 #define _GLIBCXX_HAVE_EXPL 1
660 
661 /* Define to 1 if you have the `fabsf' function. */
662 #define _GLIBCXX_HAVE_FABSF 1
663 
664 /* Define to 1 if you have the `fabsl' function. */
665 #define _GLIBCXX_HAVE_FABSL 1
666 
667 /* Define to 1 if you have the <fcntl.h> header file. */
668 #define _GLIBCXX_HAVE_FCNTL_H 1
669 
670 /* Define to 1 if you have the <fenv.h> header file. */
671 #define _GLIBCXX_HAVE_FENV_H 1
672 
673 /* Define to 1 if you have the `finite' function. */
674 #define _GLIBCXX_HAVE_FINITE 1
675 
676 /* Define to 1 if you have the `finitef' function. */
677 #define _GLIBCXX_HAVE_FINITEF 1
678 
679 /* Define to 1 if you have the `finitel' function. */
680 #define _GLIBCXX_HAVE_FINITEL 1
681 
682 /* Define to 1 if you have the <float.h> header file. */
683 #define _GLIBCXX_HAVE_FLOAT_H 1
684 
685 /* Define to 1 if you have the `floorf' function. */
686 #define _GLIBCXX_HAVE_FLOORF 1
687 
688 /* Define to 1 if you have the `floorl' function. */
689 #define _GLIBCXX_HAVE_FLOORL 1
690 
691 /* Define to 1 if you have the `fmodf' function. */
692 #define _GLIBCXX_HAVE_FMODF 1
693 
694 /* Define to 1 if you have the `fmodl' function. */
695 #define _GLIBCXX_HAVE_FMODL 1
696 
697 /* Define to 1 if you have the `fpclass' function. */
698 /* #undef _GLIBCXX_HAVE_FPCLASS */
699 
700 /* Define to 1 if you have the <fp.h> header file. */
701 /* #undef _GLIBCXX_HAVE_FP_H */
702 
703 /* Define to 1 if you have the `frexpf' function. */
704 #define _GLIBCXX_HAVE_FREXPF 1
705 
706 /* Define to 1 if you have the `frexpl' function. */
707 #define _GLIBCXX_HAVE_FREXPL 1
708 
709 /* Define if _Unwind_GetIPInfo is available. */
710 #define _GLIBCXX_HAVE_GETIPINFO 1
711 
712 /* Define if gets is available in <stdio.h>. */
713 #define _GLIBCXX_HAVE_GETS 1
714 
715 /* Define to 1 if you have the `hypot' function. */
716 #define _GLIBCXX_HAVE_HYPOT 1
717 
718 /* Define to 1 if you have the `hypotf' function. */
719 #define _GLIBCXX_HAVE_HYPOTF 1
720 
721 /* Define to 1 if you have the `hypotl' function. */
722 #define _GLIBCXX_HAVE_HYPOTL 1
723 
724 /* Define if you have the iconv() function. */
725 #define _GLIBCXX_HAVE_ICONV 1
726 
727 /* Define to 1 if you have the <ieeefp.h> header file. */
728 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
729 
730 /* Define if int64_t is available in <stdint.h>. */
731 #define _GLIBCXX_HAVE_INT64_T 1
732 
733 /* Define if int64_t is a long. */
734 #define _GLIBCXX_HAVE_INT64_T_LONG 1
735 
736 /* Define if int64_t is a long long. */
737 /* #undef _GLIBCXX_HAVE_INT64_T_LONG_LONG */
738 
739 /* Define to 1 if you have the <inttypes.h> header file. */
740 #define _GLIBCXX_HAVE_INTTYPES_H 1
741 
742 /* Define to 1 if you have the `isinf' function. */
743 /* #undef _GLIBCXX_HAVE_ISINF */
744 
745 /* Define to 1 if you have the `isinff' function. */
746 #define _GLIBCXX_HAVE_ISINFF 1
747 
748 /* Define to 1 if you have the `isinfl' function. */
749 #define _GLIBCXX_HAVE_ISINFL 1
750 
751 /* Define to 1 if you have the `isnan' function. */
752 /* #undef _GLIBCXX_HAVE_ISNAN */
753 
754 /* Define to 1 if you have the `isnanf' function. */
755 #define _GLIBCXX_HAVE_ISNANF 1
756 
757 /* Define to 1 if you have the `isnanl' function. */
758 #define _GLIBCXX_HAVE_ISNANL 1
759 
760 /* Defined if iswblank exists. */
761 #define _GLIBCXX_HAVE_ISWBLANK 1
762 
763 /* Define if LC_MESSAGES is available in <locale.h>. */
764 #define _GLIBCXX_HAVE_LC_MESSAGES 1
765 
766 /* Define to 1 if you have the `ldexpf' function. */
767 #define _GLIBCXX_HAVE_LDEXPF 1
768 
769 /* Define to 1 if you have the `ldexpl' function. */
770 #define _GLIBCXX_HAVE_LDEXPL 1
771 
772 /* Define to 1 if you have the <libintl.h> header file. */
773 #define _GLIBCXX_HAVE_LIBINTL_H 1
774 
775 /* Only used in build directory testsuite_hooks.h. */
776 #define _GLIBCXX_HAVE_LIMIT_AS 1
777 
778 /* Only used in build directory testsuite_hooks.h. */
779 #define _GLIBCXX_HAVE_LIMIT_DATA 1
780 
781 /* Only used in build directory testsuite_hooks.h. */
782 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
783 
784 /* Only used in build directory testsuite_hooks.h. */
785 #define _GLIBCXX_HAVE_LIMIT_RSS 1
786 
787 /* Only used in build directory testsuite_hooks.h. */
788 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
789 
790 /* Define if futex syscall is available. */
791 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
792 
793 /* Define to 1 if you have the <locale.h> header file. */
794 #define _GLIBCXX_HAVE_LOCALE_H 1
795 
796 /* Define to 1 if you have the `log10f' function. */
797 #define _GLIBCXX_HAVE_LOG10F 1
798 
799 /* Define to 1 if you have the `log10l' function. */
800 #define _GLIBCXX_HAVE_LOG10L 1
801 
802 /* Define to 1 if you have the `logf' function. */
803 #define _GLIBCXX_HAVE_LOGF 1
804 
805 /* Define to 1 if you have the `logl' function. */
806 #define _GLIBCXX_HAVE_LOGL 1
807 
808 /* Define to 1 if you have the <machine/endian.h> header file. */
809 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
810 
811 /* Define to 1 if you have the <machine/param.h> header file. */
812 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
813 
814 /* Define if mbstate_t exists in wchar.h. */
815 #define _GLIBCXX_HAVE_MBSTATE_T 1
816 
817 /* Define to 1 if you have the <memory.h> header file. */
818 #define _GLIBCXX_HAVE_MEMORY_H 1
819 
820 /* Define to 1 if you have the `modf' function. */
821 #define _GLIBCXX_HAVE_MODF 1
822 
823 /* Define to 1 if you have the `modff' function. */
824 #define _GLIBCXX_HAVE_MODFF 1
825 
826 /* Define to 1 if you have the `modfl' function. */
827 #define _GLIBCXX_HAVE_MODFL 1
828 
829 /* Define to 1 if you have the <nan.h> header file. */
830 /* #undef _GLIBCXX_HAVE_NAN_H */
831 
832 /* Define if poll is available in <poll.h>. */
833 #define _GLIBCXX_HAVE_POLL 1
834 
835 /* Define to 1 if you have the `powf' function. */
836 #define _GLIBCXX_HAVE_POWF 1
837 
838 /* Define to 1 if you have the `powl' function. */
839 #define _GLIBCXX_HAVE_POWL 1
840 
841 /* Define to 1 if you have the `qfpclass' function. */
842 /* #undef _GLIBCXX_HAVE_QFPCLASS */
843 
844 /* Define to 1 if you have the `quick_exit' function. */
845 #define _GLIBCXX_HAVE_QUICK_EXIT 1
846 
847 /* Define to 1 if you have the `setenv' function. */
848 #define _GLIBCXX_HAVE_SETENV 1
849 
850 /* Define to 1 if you have the `sincos' function. */
851 #define _GLIBCXX_HAVE_SINCOS 1
852 
853 /* Define to 1 if you have the `sincosf' function. */
854 #define _GLIBCXX_HAVE_SINCOSF 1
855 
856 /* Define to 1 if you have the `sincosl' function. */
857 #define _GLIBCXX_HAVE_SINCOSL 1
858 
859 /* Define to 1 if you have the `sinf' function. */
860 #define _GLIBCXX_HAVE_SINF 1
861 
862 /* Define to 1 if you have the `sinhf' function. */
863 #define _GLIBCXX_HAVE_SINHF 1
864 
865 /* Define to 1 if you have the `sinhl' function. */
866 #define _GLIBCXX_HAVE_SINHL 1
867 
868 /* Define to 1 if you have the `sinl' function. */
869 #define _GLIBCXX_HAVE_SINL 1
870 
871 /* Defined if sleep exists. */
872 /* #undef _GLIBCXX_HAVE_SLEEP */
873 
874 /* Define to 1 if you have the `sqrtf' function. */
875 #define _GLIBCXX_HAVE_SQRTF 1
876 
877 /* Define to 1 if you have the `sqrtl' function. */
878 #define _GLIBCXX_HAVE_SQRTL 1
879 
880 /* Define to 1 if you have the <stdalign.h> header file. */
881 #define _GLIBCXX_HAVE_STDALIGN_H 1
882 
883 /* Define to 1 if you have the <stdbool.h> header file. */
884 #define _GLIBCXX_HAVE_STDBOOL_H 1
885 
886 /* Define to 1 if you have the <stdint.h> header file. */
887 #define _GLIBCXX_HAVE_STDINT_H 1
888 
889 /* Define to 1 if you have the <stdlib.h> header file. */
890 #define _GLIBCXX_HAVE_STDLIB_H 1
891 
892 /* Define if strerror_l is available in <string.h>. */
893 #define _GLIBCXX_HAVE_STRERROR_L 1
894 
895 /* Define if strerror_r is available in <string.h>. */
896 #define _GLIBCXX_HAVE_STRERROR_R 1
897 
898 /* Define to 1 if you have the <strings.h> header file. */
899 #define _GLIBCXX_HAVE_STRINGS_H 1
900 
901 /* Define to 1 if you have the <string.h> header file. */
902 #define _GLIBCXX_HAVE_STRING_H 1
903 
904 /* Define to 1 if you have the `strtof' function. */
905 #define _GLIBCXX_HAVE_STRTOF 1
906 
907 /* Define to 1 if you have the `strtold' function. */
908 #define _GLIBCXX_HAVE_STRTOLD 1
909 
910 /* Define to 1 if `d_type' is a member of `struct dirent'. */
911 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1
912 
913 /* Define if strxfrm_l is available in <string.h>. */
914 #define _GLIBCXX_HAVE_STRXFRM_L 1
915 
916 /* Define to 1 if the target runtime linker supports binding the same symbol
917  to different versions. */
918 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
919 
920 /* Define to 1 if you have the <sys/filio.h> header file. */
921 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
922 
923 /* Define to 1 if you have the <sys/ioctl.h> header file. */
924 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
925 
926 /* Define to 1 if you have the <sys/ipc.h> header file. */
927 #define _GLIBCXX_HAVE_SYS_IPC_H 1
928 
929 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
930 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
931 
932 /* Define to 1 if you have the <sys/machine.h> header file. */
933 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
934 
935 /* Define to 1 if you have the <sys/param.h> header file. */
936 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
937 
938 /* Define to 1 if you have the <sys/resource.h> header file. */
939 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
940 
941 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
942 #define _GLIBCXX_HAVE_SYS_SDT_H 1
943 
944 /* Define to 1 if you have the <sys/sem.h> header file. */
945 #define _GLIBCXX_HAVE_SYS_SEM_H 1
946 
947 /* Define to 1 if you have the <sys/statvfs.h> header file. */
948 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1
949 
950 /* Define to 1 if you have the <sys/stat.h> header file. */
951 #define _GLIBCXX_HAVE_SYS_STAT_H 1
952 
953 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
954 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
955 
956 /* Define to 1 if you have the <sys/time.h> header file. */
957 #define _GLIBCXX_HAVE_SYS_TIME_H 1
958 
959 /* Define to 1 if you have the <sys/types.h> header file. */
960 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
961 
962 /* Define to 1 if you have the <sys/uio.h> header file. */
963 #define _GLIBCXX_HAVE_SYS_UIO_H 1
964 
965 /* Define if S_IFREG is available in <sys/stat.h>. */
966 /* #undef _GLIBCXX_HAVE_S_IFREG */
967 
968 /* Define if S_IFREG is available in <sys/stat.h>. */
969 #define _GLIBCXX_HAVE_S_ISREG 1
970 
971 /* Define to 1 if you have the `tanf' function. */
972 #define _GLIBCXX_HAVE_TANF 1
973 
974 /* Define to 1 if you have the `tanhf' function. */
975 #define _GLIBCXX_HAVE_TANHF 1
976 
977 /* Define to 1 if you have the `tanhl' function. */
978 #define _GLIBCXX_HAVE_TANHL 1
979 
980 /* Define to 1 if you have the `tanl' function. */
981 #define _GLIBCXX_HAVE_TANL 1
982 
983 /* Define to 1 if you have the <tgmath.h> header file. */
984 #define _GLIBCXX_HAVE_TGMATH_H 1
985 
986 /* Define to 1 if the target supports thread-local storage. */
987 #define _GLIBCXX_HAVE_TLS 1
988 
989 /* Define to 1 if you have the <unistd.h> header file. */
990 #define _GLIBCXX_HAVE_UNISTD_H 1
991 
992 /* Defined if usleep exists. */
993 /* #undef _GLIBCXX_HAVE_USLEEP */
994 
995 /* Define to 1 if you have the <utime.h> header file. */
996 #define _GLIBCXX_HAVE_UTIME_H 1
997 
998 /* Defined if vfwscanf exists. */
999 #define _GLIBCXX_HAVE_VFWSCANF 1
1000 
1001 /* Defined if vswscanf exists. */
1002 #define _GLIBCXX_HAVE_VSWSCANF 1
1003 
1004 /* Defined if vwscanf exists. */
1005 #define _GLIBCXX_HAVE_VWSCANF 1
1006 
1007 /* Define to 1 if you have the <wchar.h> header file. */
1008 #define _GLIBCXX_HAVE_WCHAR_H 1
1009 
1010 /* Defined if wcstof exists. */
1011 #define _GLIBCXX_HAVE_WCSTOF 1
1012 
1013 /* Define to 1 if you have the <wctype.h> header file. */
1014 #define _GLIBCXX_HAVE_WCTYPE_H 1
1015 
1016 /* Defined if Sleep exists. */
1017 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
1018 
1019 /* Define if writev is available in <sys/uio.h>. */
1020 #define _GLIBCXX_HAVE_WRITEV 1
1021 
1022 /* Define to 1 if you have the `_acosf' function. */
1023 /* #undef _GLIBCXX_HAVE__ACOSF */
1024 
1025 /* Define to 1 if you have the `_acosl' function. */
1026 /* #undef _GLIBCXX_HAVE__ACOSL */
1027 
1028 /* Define to 1 if you have the `_asinf' function. */
1029 /* #undef _GLIBCXX_HAVE__ASINF */
1030 
1031 /* Define to 1 if you have the `_asinl' function. */
1032 /* #undef _GLIBCXX_HAVE__ASINL */
1033 
1034 /* Define to 1 if you have the `_atan2f' function. */
1035 /* #undef _GLIBCXX_HAVE__ATAN2F */
1036 
1037 /* Define to 1 if you have the `_atan2l' function. */
1038 /* #undef _GLIBCXX_HAVE__ATAN2L */
1039 
1040 /* Define to 1 if you have the `_atanf' function. */
1041 /* #undef _GLIBCXX_HAVE__ATANF */
1042 
1043 /* Define to 1 if you have the `_atanl' function. */
1044 /* #undef _GLIBCXX_HAVE__ATANL */
1045 
1046 /* Define to 1 if you have the `_ceilf' function. */
1047 /* #undef _GLIBCXX_HAVE__CEILF */
1048 
1049 /* Define to 1 if you have the `_ceill' function. */
1050 /* #undef _GLIBCXX_HAVE__CEILL */
1051 
1052 /* Define to 1 if you have the `_cosf' function. */
1053 /* #undef _GLIBCXX_HAVE__COSF */
1054 
1055 /* Define to 1 if you have the `_coshf' function. */
1056 /* #undef _GLIBCXX_HAVE__COSHF */
1057 
1058 /* Define to 1 if you have the `_coshl' function. */
1059 /* #undef _GLIBCXX_HAVE__COSHL */
1060 
1061 /* Define to 1 if you have the `_cosl' function. */
1062 /* #undef _GLIBCXX_HAVE__COSL */
1063 
1064 /* Define to 1 if you have the `_expf' function. */
1065 /* #undef _GLIBCXX_HAVE__EXPF */
1066 
1067 /* Define to 1 if you have the `_expl' function. */
1068 /* #undef _GLIBCXX_HAVE__EXPL */
1069 
1070 /* Define to 1 if you have the `_fabsf' function. */
1071 /* #undef _GLIBCXX_HAVE__FABSF */
1072 
1073 /* Define to 1 if you have the `_fabsl' function. */
1074 /* #undef _GLIBCXX_HAVE__FABSL */
1075 
1076 /* Define to 1 if you have the `_finite' function. */
1077 /* #undef _GLIBCXX_HAVE__FINITE */
1078 
1079 /* Define to 1 if you have the `_finitef' function. */
1080 /* #undef _GLIBCXX_HAVE__FINITEF */
1081 
1082 /* Define to 1 if you have the `_finitel' function. */
1083 /* #undef _GLIBCXX_HAVE__FINITEL */
1084 
1085 /* Define to 1 if you have the `_floorf' function. */
1086 /* #undef _GLIBCXX_HAVE__FLOORF */
1087 
1088 /* Define to 1 if you have the `_floorl' function. */
1089 /* #undef _GLIBCXX_HAVE__FLOORL */
1090 
1091 /* Define to 1 if you have the `_fmodf' function. */
1092 /* #undef _GLIBCXX_HAVE__FMODF */
1093 
1094 /* Define to 1 if you have the `_fmodl' function. */
1095 /* #undef _GLIBCXX_HAVE__FMODL */
1096 
1097 /* Define to 1 if you have the `_fpclass' function. */
1098 /* #undef _GLIBCXX_HAVE__FPCLASS */
1099 
1100 /* Define to 1 if you have the `_frexpf' function. */
1101 /* #undef _GLIBCXX_HAVE__FREXPF */
1102 
1103 /* Define to 1 if you have the `_frexpl' function. */
1104 /* #undef _GLIBCXX_HAVE__FREXPL */
1105 
1106 /* Define to 1 if you have the `_hypot' function. */
1107 /* #undef _GLIBCXX_HAVE__HYPOT */
1108 
1109 /* Define to 1 if you have the `_hypotf' function. */
1110 /* #undef _GLIBCXX_HAVE__HYPOTF */
1111 
1112 /* Define to 1 if you have the `_hypotl' function. */
1113 /* #undef _GLIBCXX_HAVE__HYPOTL */
1114 
1115 /* Define to 1 if you have the `_isinf' function. */
1116 /* #undef _GLIBCXX_HAVE__ISINF */
1117 
1118 /* Define to 1 if you have the `_isinff' function. */
1119 /* #undef _GLIBCXX_HAVE__ISINFF */
1120 
1121 /* Define to 1 if you have the `_isinfl' function. */
1122 /* #undef _GLIBCXX_HAVE__ISINFL */
1123 
1124 /* Define to 1 if you have the `_isnan' function. */
1125 /* #undef _GLIBCXX_HAVE__ISNAN */
1126 
1127 /* Define to 1 if you have the `_isnanf' function. */
1128 /* #undef _GLIBCXX_HAVE__ISNANF */
1129 
1130 /* Define to 1 if you have the `_isnanl' function. */
1131 /* #undef _GLIBCXX_HAVE__ISNANL */
1132 
1133 /* Define to 1 if you have the `_ldexpf' function. */
1134 /* #undef _GLIBCXX_HAVE__LDEXPF */
1135 
1136 /* Define to 1 if you have the `_ldexpl' function. */
1137 /* #undef _GLIBCXX_HAVE__LDEXPL */
1138 
1139 /* Define to 1 if you have the `_log10f' function. */
1140 /* #undef _GLIBCXX_HAVE__LOG10F */
1141 
1142 /* Define to 1 if you have the `_log10l' function. */
1143 /* #undef _GLIBCXX_HAVE__LOG10L */
1144 
1145 /* Define to 1 if you have the `_logf' function. */
1146 /* #undef _GLIBCXX_HAVE__LOGF */
1147 
1148 /* Define to 1 if you have the `_logl' function. */
1149 /* #undef _GLIBCXX_HAVE__LOGL */
1150 
1151 /* Define to 1 if you have the `_modf' function. */
1152 /* #undef _GLIBCXX_HAVE__MODF */
1153 
1154 /* Define to 1 if you have the `_modff' function. */
1155 /* #undef _GLIBCXX_HAVE__MODFF */
1156 
1157 /* Define to 1 if you have the `_modfl' function. */
1158 /* #undef _GLIBCXX_HAVE__MODFL */
1159 
1160 /* Define to 1 if you have the `_powf' function. */
1161 /* #undef _GLIBCXX_HAVE__POWF */
1162 
1163 /* Define to 1 if you have the `_powl' function. */
1164 /* #undef _GLIBCXX_HAVE__POWL */
1165 
1166 /* Define to 1 if you have the `_qfpclass' function. */
1167 /* #undef _GLIBCXX_HAVE__QFPCLASS */
1168 
1169 /* Define to 1 if you have the `_sincos' function. */
1170 /* #undef _GLIBCXX_HAVE__SINCOS */
1171 
1172 /* Define to 1 if you have the `_sincosf' function. */
1173 /* #undef _GLIBCXX_HAVE__SINCOSF */
1174 
1175 /* Define to 1 if you have the `_sincosl' function. */
1176 /* #undef _GLIBCXX_HAVE__SINCOSL */
1177 
1178 /* Define to 1 if you have the `_sinf' function. */
1179 /* #undef _GLIBCXX_HAVE__SINF */
1180 
1181 /* Define to 1 if you have the `_sinhf' function. */
1182 /* #undef _GLIBCXX_HAVE__SINHF */
1183 
1184 /* Define to 1 if you have the `_sinhl' function. */
1185 /* #undef _GLIBCXX_HAVE__SINHL */
1186 
1187 /* Define to 1 if you have the `_sinl' function. */
1188 /* #undef _GLIBCXX_HAVE__SINL */
1189 
1190 /* Define to 1 if you have the `_sqrtf' function. */
1191 /* #undef _GLIBCXX_HAVE__SQRTF */
1192 
1193 /* Define to 1 if you have the `_sqrtl' function. */
1194 /* #undef _GLIBCXX_HAVE__SQRTL */
1195 
1196 /* Define to 1 if you have the `_tanf' function. */
1197 /* #undef _GLIBCXX_HAVE__TANF */
1198 
1199 /* Define to 1 if you have the `_tanhf' function. */
1200 /* #undef _GLIBCXX_HAVE__TANHF */
1201 
1202 /* Define to 1 if you have the `_tanhl' function. */
1203 /* #undef _GLIBCXX_HAVE__TANHL */
1204 
1205 /* Define to 1 if you have the `_tanl' function. */
1206 /* #undef _GLIBCXX_HAVE__TANL */
1207 
1208 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
1209 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
1210 
1211 /* Define as const if the declaration of iconv() needs const. */
1212 #define _GLIBCXX_ICONV_CONST
1213 
1214 /* Define to the sub-directory in which libtool stores uninstalled libraries.
1215  */
1216 #define LT_OBJDIR ".libs/"
1217 
1218 /* Name of package */
1219 /* #undef _GLIBCXX_PACKAGE */
1220 
1221 /* Define to the address where bug reports for this package should be sent. */
1222 #define _GLIBCXX_PACKAGE_BUGREPORT ""
1223 
1224 /* Define to the full name of this package. */
1225 #define _GLIBCXX_PACKAGE_NAME "package-unused"
1226 
1227 /* Define to the full name and version of this package. */
1228 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
1229 
1230 /* Define to the one symbol short name of this package. */
1231 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
1232 
1233 /* Define to the home page for this package. */
1234 #define _GLIBCXX_PACKAGE_URL ""
1235 
1236 /* Define to the version of this package. */
1237 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
1238 
1239 /* The size of `char', as computed by sizeof. */
1240 /* #undef SIZEOF_CHAR */
1241 
1242 /* The size of `int', as computed by sizeof. */
1243 /* #undef SIZEOF_INT */
1244 
1245 /* The size of `long', as computed by sizeof. */
1246 /* #undef SIZEOF_LONG */
1247 
1248 /* The size of `short', as computed by sizeof. */
1249 /* #undef SIZEOF_SHORT */
1250 
1251 /* The size of `void *', as computed by sizeof. */
1252 /* #undef SIZEOF_VOID_P */
1253 
1254 /* Define to 1 if you have the ANSI C header files. */
1255 #define STDC_HEADERS 1
1256 
1257 /* Version number of package */
1258 /* #undef _GLIBCXX_VERSION */
1259 
1260 /* Define if the compiler supports C++11 atomics. */
1261 #define _GLIBCXX_ATOMIC_BUILTINS 1
1262 
1263 /* Define to use concept checking code from the boost libraries. */
1264 /* #undef _GLIBCXX_CONCEPT_CHECKS */
1265 
1266 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
1267  undefined for platform defaults */
1268 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
1269 
1270 /* Define if gthreads library is available. */
1271 #define _GLIBCXX_HAS_GTHREADS 1
1272 
1273 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
1274 #define _GLIBCXX_HOSTED 1
1275 
1276 /* Define if compatibility should be provided for -mlong-double-64. */
1277 
1278 /* Define if ptrdiff_t is int. */
1279 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
1280 
1281 /* Define if using setrlimit to set resource limits during "make check" */
1282 #define _GLIBCXX_RES_LIMITS 1
1283 
1284 /* Define if size_t is unsigned int. */
1285 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
1286 
1287 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
1288 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
1289 
1290 /* Define to the value of the EOF integer constant. */
1291 #define _GLIBCXX_STDIO_EOF -1
1292 
1293 /* Define to the value of the SEEK_CUR integer constant. */
1294 #define _GLIBCXX_STDIO_SEEK_CUR 1
1295 
1296 /* Define to the value of the SEEK_END integer constant. */
1297 #define _GLIBCXX_STDIO_SEEK_END 2
1298 
1299 /* Define to use symbol versioning in the shared library. */
1300 #define _GLIBCXX_SYMVER 1
1301 
1302 /* Define to use darwin versioning in the shared library. */
1303 /* #undef _GLIBCXX_SYMVER_DARWIN */
1304 
1305 /* Define to use GNU versioning in the shared library. */
1306 #define _GLIBCXX_SYMVER_GNU 1
1307 
1308 /* Define to use GNU namespace versioning in the shared library. */
1309 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
1310 
1311 /* Define to use Sun versioning in the shared library. */
1312 /* #undef _GLIBCXX_SYMVER_SUN */
1313 
1314 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
1315  <stdio.h>, and <stdlib.h> can be used or exposed. */
1316 /* #undef _GLIBCXX_USE_C99 */
1317 
1318 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
1319  compiler builtins for these functions requires corresponding C99 library
1320  functions to be present. */
1321 #define _GLIBCXX_USE_C99_COMPLEX 1
1322 
1323 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
1324  Using compiler builtins for these functions requires corresponding C99
1325  library functions to be present. */
1326 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
1327 
1328 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
1329  namespace std::tr1. */
1330 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
1331 
1332 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
1333  namespace std::tr1. */
1334 #define _GLIBCXX_USE_C99_FENV_TR1 1
1335 
1336 /* Define if C99 functions in <inttypes.h> should be imported in
1337  <tr1/cinttypes> in namespace std::tr1. */
1338 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
1339 
1340 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
1341  <tr1/cinttypes> in namespace std::tr1. */
1342 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
1343 
1344 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1345  in namespace std. */
1346 /* #undef _GLIBCXX_USE_C99_MATH */
1347 
1348 /* Define if C99 functions or macros in <math.h> should be imported in
1349  <tr1/cmath> in namespace std::tr1. */
1350 #define _GLIBCXX_USE_C99_MATH_TR1 1
1351 
1352 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
1353  namespace std::tr1. */
1354 #define _GLIBCXX_USE_C99_STDINT_TR1 1
1355 
1356 /* Defined if clock_gettime syscall has monotonic and realtime clock support.
1357  */
1358 /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */
1359 
1360 /* Defined if clock_gettime has monotonic clock support. */
1361 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
1362 
1363 /* Defined if clock_gettime has realtime clock support. */
1364 #define _GLIBCXX_USE_CLOCK_REALTIME 1
1365 
1366 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
1367  this host. */
1368 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
1369 
1370 /* Define if fchmod is available in <sys/stat.h>. */
1371 #define _GLIBCXX_USE_FCHMOD 1
1372 
1373 /* Define if fchmodat is available in <sys/stat.h>. */
1374 #define _GLIBCXX_USE_FCHMODAT 1
1375 
1376 /* Define if __float128 is supported on this host. */
1377 #define _GLIBCXX_USE_FLOAT128 1
1378 
1379 /* Defined if gettimeofday is available. */
1380 #define _GLIBCXX_USE_GETTIMEOFDAY 1
1381 
1382 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
1383 #define _GLIBCXX_USE_GET_NPROCS 1
1384 
1385 /* Define if __int128 is supported on this host. */
1386 #define _GLIBCXX_USE_INT128 1
1387 
1388 /* Define if LFS support is available. */
1389 #define _GLIBCXX_USE_LFS 1
1390 
1391 /* Define if code specialized for long long should be used. */
1392 #define _GLIBCXX_USE_LONG_LONG 1
1393 
1394 /* Defined if nanosleep is available. */
1395 #define _GLIBCXX_USE_NANOSLEEP 1
1396 
1397 /* Define if NLS translations are to be used. */
1398 #define _GLIBCXX_USE_NLS 1
1399 
1400 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
1401 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
1402 
1403 /* Define if POSIX read/write locks are available in <gthr.h>. */
1404 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1
1405 
1406 /* Define if /dev/random and /dev/urandom are available for the random_device
1407  of TR1 (Chapter 5.1). */
1408 #define _GLIBCXX_USE_RANDOM_TR1 1
1409 
1410 /* Define if usable realpath is available in <stdlib.h>. */
1411 #define _GLIBCXX_USE_REALPATH 1
1412 
1413 /* Defined if sched_yield is available. */
1414 #define _GLIBCXX_USE_SCHED_YIELD 1
1415 
1416 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
1417 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
1418 
1419 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
1420 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
1421 
1422 /* Define if sendfile is available in <sys/sendfile.h>. */
1423 #define _GLIBCXX_USE_SENDFILE 1
1424 
1425 /* Define if struct stat has timespec members. */
1426 #define _GLIBCXX_USE_ST_MTIM 1
1427 
1428 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
1429 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
1430 
1431 /* Define if obsolescent tmpnam is available in <stdio.h>. */
1432 #define _GLIBCXX_USE_TMPNAM 1
1433 
1434 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and
1435  AT_FDCWD in <fcntl.h>. */
1436 #define _GLIBCXX_USE_UTIMENSAT 1
1437 
1438 /* Define if code specialized for wchar_t should be used. */
1439 #define _GLIBCXX_USE_WCHAR_T 1
1440 
1441 /* Define to 1 if a verbose library is built, or 0 otherwise. */
1442 #define _GLIBCXX_VERBOSE 1
1443 
1444 /* Defined if as can handle rdrand. */
1445 #define _GLIBCXX_X86_RDRAND 1
1446 
1447 /* Define to 1 if mutex_timedlock is available. */
1448 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
1449 
1450 /* Define if all C++11 floating point overloads are available in <math.h>. */
1451 #if __cplusplus >= 201103L
1452 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */
1453 #endif
1454 
1455 /* Define if all C++11 integral type overloads are available in <math.h>. */
1456 #if __cplusplus >= 201103L
1457 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */
1458 #endif
1459 
1460 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1461 # define _GLIBCXX_HAVE_ACOSF 1
1462 # define acosf _acosf
1463 #endif
1464 
1465 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1466 # define _GLIBCXX_HAVE_ACOSL 1
1467 # define acosl _acosl
1468 #endif
1469 
1470 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1471 # define _GLIBCXX_HAVE_ASINF 1
1472 # define asinf _asinf
1473 #endif
1474 
1475 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1476 # define _GLIBCXX_HAVE_ASINL 1
1477 # define asinl _asinl
1478 #endif
1479 
1480 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
1481 # define _GLIBCXX_HAVE_ATAN2F 1
1482 # define atan2f _atan2f
1483 #endif
1484 
1485 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
1486 # define _GLIBCXX_HAVE_ATAN2L 1
1487 # define atan2l _atan2l
1488 #endif
1489 
1490 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1491 # define _GLIBCXX_HAVE_ATANF 1
1492 # define atanf _atanf
1493 #endif
1494 
1495 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1496 # define _GLIBCXX_HAVE_ATANL 1
1497 # define atanl _atanl
1498 #endif
1499 
1500 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1501 # define _GLIBCXX_HAVE_CEILF 1
1502 # define ceilf _ceilf
1503 #endif
1504 
1505 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1506 # define _GLIBCXX_HAVE_CEILL 1
1507 # define ceill _ceill
1508 #endif
1509 
1510 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1511 # define _GLIBCXX_HAVE_COSF 1
1512 # define cosf _cosf
1513 #endif
1514 
1515 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1516 # define _GLIBCXX_HAVE_COSHF 1
1517 # define coshf _coshf
1518 #endif
1519 
1520 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1521 # define _GLIBCXX_HAVE_COSHL 1
1522 # define coshl _coshl
1523 #endif
1524 
1525 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1526 # define _GLIBCXX_HAVE_COSL 1
1527 # define cosl _cosl
1528 #endif
1529 
1530 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1531 # define _GLIBCXX_HAVE_EXPF 1
1532 # define expf _expf
1533 #endif
1534 
1535 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1536 # define _GLIBCXX_HAVE_EXPL 1
1537 # define expl _expl
1538 #endif
1539 
1540 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1541 # define _GLIBCXX_HAVE_FABSF 1
1542 # define fabsf _fabsf
1543 #endif
1544 
1545 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1546 # define _GLIBCXX_HAVE_FABSL 1
1547 # define fabsl _fabsl
1548 #endif
1549 
1550 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1551 # define _GLIBCXX_HAVE_FINITE 1
1552 # define finite _finite
1553 #endif
1554 
1555 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1556 # define _GLIBCXX_HAVE_FINITEF 1
1557 # define finitef _finitef
1558 #endif
1559 
1560 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1561 # define _GLIBCXX_HAVE_FINITEL 1
1562 # define finitel _finitel
1563 #endif
1564 
1565 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1566 # define _GLIBCXX_HAVE_FLOORF 1
1567 # define floorf _floorf
1568 #endif
1569 
1570 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1571 # define _GLIBCXX_HAVE_FLOORL 1
1572 # define floorl _floorl
1573 #endif
1574 
1575 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1576 # define _GLIBCXX_HAVE_FMODF 1
1577 # define fmodf _fmodf
1578 #endif
1579 
1580 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1581 # define _GLIBCXX_HAVE_FMODL 1
1582 # define fmodl _fmodl
1583 #endif
1584 
1585 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1586 # define _GLIBCXX_HAVE_FPCLASS 1
1587 # define fpclass _fpclass
1588 #endif
1589 
1590 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1591 # define _GLIBCXX_HAVE_FREXPF 1
1592 # define frexpf _frexpf
1593 #endif
1594 
1595 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1596 # define _GLIBCXX_HAVE_FREXPL 1
1597 # define frexpl _frexpl
1598 #endif
1599 
1600 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
1601 # define _GLIBCXX_HAVE_HYPOT 1
1602 # define hypot _hypot
1603 #endif
1604 
1605 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
1606 # define _GLIBCXX_HAVE_HYPOTF 1
1607 # define hypotf _hypotf
1608 #endif
1609 
1610 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
1611 # define _GLIBCXX_HAVE_HYPOTL 1
1612 # define hypotl _hypotl
1613 #endif
1614 
1615 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1616 # define _GLIBCXX_HAVE_ISINF 1
1617 # define isinf _isinf
1618 #endif
1619 
1620 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1621 # define _GLIBCXX_HAVE_ISINFF 1
1622 # define isinff _isinff
1623 #endif
1624 
1625 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1626 # define _GLIBCXX_HAVE_ISINFL 1
1627 # define isinfl _isinfl
1628 #endif
1629 
1630 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
1631 # define _GLIBCXX_HAVE_ISNAN 1
1632 # define isnan _isnan
1633 #endif
1634 
1635 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
1636 # define _GLIBCXX_HAVE_ISNANF 1
1637 # define isnanf _isnanf
1638 #endif
1639 
1640 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1641 # define _GLIBCXX_HAVE_ISNANL 1
1642 # define isnanl _isnanl
1643 #endif
1644 
1645 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1646 # define _GLIBCXX_HAVE_LDEXPF 1
1647 # define ldexpf _ldexpf
1648 #endif
1649 
1650 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1651 # define _GLIBCXX_HAVE_LDEXPL 1
1652 # define ldexpl _ldexpl
1653 #endif
1654 
1655 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1656 # define _GLIBCXX_HAVE_LOG10F 1
1657 # define log10f _log10f
1658 #endif
1659 
1660 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1661 # define _GLIBCXX_HAVE_LOG10L 1
1662 # define log10l _log10l
1663 #endif
1664 
1665 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1666 # define _GLIBCXX_HAVE_LOGF 1
1667 # define logf _logf
1668 #endif
1669 
1670 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1671 # define _GLIBCXX_HAVE_LOGL 1
1672 # define logl _logl
1673 #endif
1674 
1675 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1676 # define _GLIBCXX_HAVE_MODF 1
1677 # define modf _modf
1678 #endif
1679 
1680 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
1681 # define _GLIBCXX_HAVE_MODFF 1
1682 # define modff _modff
1683 #endif
1684 
1685 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
1686 # define _GLIBCXX_HAVE_MODFL 1
1687 # define modfl _modfl
1688 #endif
1689 
1690 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1691 # define _GLIBCXX_HAVE_POWF 1
1692 # define powf _powf
1693 #endif
1694 
1695 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1696 # define _GLIBCXX_HAVE_POWL 1
1697 # define powl _powl
1698 #endif
1699 
1700 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1701 # define _GLIBCXX_HAVE_QFPCLASS 1
1702 # define qfpclass _qfpclass
1703 #endif
1704 
1705 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1706 # define _GLIBCXX_HAVE_SINCOS 1
1707 # define sincos _sincos
1708 #endif
1709 
1710 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1711 # define _GLIBCXX_HAVE_SINCOSF 1
1712 # define sincosf _sincosf
1713 #endif
1714 
1715 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1716 # define _GLIBCXX_HAVE_SINCOSL 1
1717 # define sincosl _sincosl
1718 #endif
1719 
1720 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1721 # define _GLIBCXX_HAVE_SINF 1
1722 # define sinf _sinf
1723 #endif
1724 
1725 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1726 # define _GLIBCXX_HAVE_SINHF 1
1727 # define sinhf _sinhf
1728 #endif
1729 
1730 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1731 # define _GLIBCXX_HAVE_SINHL 1
1732 # define sinhl _sinhl
1733 #endif
1734 
1735 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1736 # define _GLIBCXX_HAVE_SINL 1
1737 # define sinl _sinl
1738 #endif
1739 
1740 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1741 # define _GLIBCXX_HAVE_SQRTF 1
1742 # define sqrtf _sqrtf
1743 #endif
1744 
1745 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1746 # define _GLIBCXX_HAVE_SQRTL 1
1747 # define sqrtl _sqrtl
1748 #endif
1749 
1750 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1751 # define _GLIBCXX_HAVE_STRTOF 1
1752 # define strtof _strtof
1753 #endif
1754 
1755 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1756 # define _GLIBCXX_HAVE_STRTOLD 1
1757 # define strtold _strtold
1758 #endif
1759 
1760 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1761 # define _GLIBCXX_HAVE_TANF 1
1762 # define tanf _tanf
1763 #endif
1764 
1765 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1766 # define _GLIBCXX_HAVE_TANHF 1
1767 # define tanhf _tanhf
1768 #endif
1769 
1770 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1771 # define _GLIBCXX_HAVE_TANHL 1
1772 # define tanhl _tanhl
1773 #endif
1774 
1775 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1776 # define _GLIBCXX_HAVE_TANL 1
1777 # define tanl _tanl
1778 #endif
1779 
1780 #endif // _GLIBCXX_CXX_CONFIG_H
GNU extensions for public use.
ISO C++ entities toplevel namespace is std.