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__ 20170513
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 GCC 4.6 supported std::exception_ptr for the target */
653 #define _GLIBCXX_HAVE_EXCEPTION_PTR_SINCE_GCC46 1
654 
655 /* Define to 1 if you have the <execinfo.h> header file. */
656 #define _GLIBCXX_HAVE_EXECINFO_H 1
657 
658 /* Define to 1 if you have the `expf' function. */
659 #define _GLIBCXX_HAVE_EXPF 1
660 
661 /* Define to 1 if you have the `expl' function. */
662 #define _GLIBCXX_HAVE_EXPL 1
663 
664 /* Define to 1 if you have the `fabsf' function. */
665 #define _GLIBCXX_HAVE_FABSF 1
666 
667 /* Define to 1 if you have the `fabsl' function. */
668 #define _GLIBCXX_HAVE_FABSL 1
669 
670 /* Define to 1 if you have the <fcntl.h> header file. */
671 #define _GLIBCXX_HAVE_FCNTL_H 1
672 
673 /* Define to 1 if you have the <fenv.h> header file. */
674 #define _GLIBCXX_HAVE_FENV_H 1
675 
676 /* Define to 1 if you have the `finite' function. */
677 #define _GLIBCXX_HAVE_FINITE 1
678 
679 /* Define to 1 if you have the `finitef' function. */
680 #define _GLIBCXX_HAVE_FINITEF 1
681 
682 /* Define to 1 if you have the `finitel' function. */
683 #define _GLIBCXX_HAVE_FINITEL 1
684 
685 /* Define to 1 if you have the <float.h> header file. */
686 #define _GLIBCXX_HAVE_FLOAT_H 1
687 
688 /* Define to 1 if you have the `floorf' function. */
689 #define _GLIBCXX_HAVE_FLOORF 1
690 
691 /* Define to 1 if you have the `floorl' function. */
692 #define _GLIBCXX_HAVE_FLOORL 1
693 
694 /* Define to 1 if you have the `fmodf' function. */
695 #define _GLIBCXX_HAVE_FMODF 1
696 
697 /* Define to 1 if you have the `fmodl' function. */
698 #define _GLIBCXX_HAVE_FMODL 1
699 
700 /* Define to 1 if you have the `fpclass' function. */
701 /* #undef _GLIBCXX_HAVE_FPCLASS */
702 
703 /* Define to 1 if you have the <fp.h> header file. */
704 /* #undef _GLIBCXX_HAVE_FP_H */
705 
706 /* Define to 1 if you have the `frexpf' function. */
707 #define _GLIBCXX_HAVE_FREXPF 1
708 
709 /* Define to 1 if you have the `frexpl' function. */
710 #define _GLIBCXX_HAVE_FREXPL 1
711 
712 /* Define if _Unwind_GetIPInfo is available. */
713 #define _GLIBCXX_HAVE_GETIPINFO 1
714 
715 /* Define if gets is available in <stdio.h>. */
716 #define _GLIBCXX_HAVE_GETS 1
717 
718 /* Define to 1 if you have the `hypot' function. */
719 #define _GLIBCXX_HAVE_HYPOT 1
720 
721 /* Define to 1 if you have the `hypotf' function. */
722 #define _GLIBCXX_HAVE_HYPOTF 1
723 
724 /* Define to 1 if you have the `hypotl' function. */
725 #define _GLIBCXX_HAVE_HYPOTL 1
726 
727 /* Define if you have the iconv() function. */
728 #define _GLIBCXX_HAVE_ICONV 1
729 
730 /* Define to 1 if you have the <ieeefp.h> header file. */
731 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
732 
733 /* Define if int64_t is available in <stdint.h>. */
734 #define _GLIBCXX_HAVE_INT64_T 1
735 
736 /* Define if int64_t is a long. */
737 /* #undef _GLIBCXX_HAVE_INT64_T_LONG */
738 
739 /* Define if int64_t is a long long. */
740 #define _GLIBCXX_HAVE_INT64_T_LONG_LONG 1
741 
742 /* Define to 1 if you have the <inttypes.h> header file. */
743 #define _GLIBCXX_HAVE_INTTYPES_H 1
744 
745 /* Define to 1 if you have the `isinf' function. */
746 #define _GLIBCXX_HAVE_ISINF 1
747 
748 /* Define to 1 if you have the `isinff' function. */
749 #define _GLIBCXX_HAVE_ISINFF 1
750 
751 /* Define to 1 if you have the `isinfl' function. */
752 #define _GLIBCXX_HAVE_ISINFL 1
753 
754 /* Define to 1 if you have the `isnan' function. */
755 #define _GLIBCXX_HAVE_ISNAN 1
756 
757 /* Define to 1 if you have the `isnanf' function. */
758 #define _GLIBCXX_HAVE_ISNANF 1
759 
760 /* Define to 1 if you have the `isnanl' function. */
761 #define _GLIBCXX_HAVE_ISNANL 1
762 
763 /* Defined if iswblank exists. */
764 #define _GLIBCXX_HAVE_ISWBLANK 1
765 
766 /* Define if LC_MESSAGES is available in <locale.h>. */
767 #define _GLIBCXX_HAVE_LC_MESSAGES 1
768 
769 /* Define to 1 if you have the `ldexpf' function. */
770 #define _GLIBCXX_HAVE_LDEXPF 1
771 
772 /* Define to 1 if you have the `ldexpl' function. */
773 #define _GLIBCXX_HAVE_LDEXPL 1
774 
775 /* Define to 1 if you have the <libintl.h> header file. */
776 #define _GLIBCXX_HAVE_LIBINTL_H 1
777 
778 /* Only used in build directory testsuite_hooks.h. */
779 #define _GLIBCXX_HAVE_LIMIT_AS 1
780 
781 /* Only used in build directory testsuite_hooks.h. */
782 #define _GLIBCXX_HAVE_LIMIT_DATA 1
783 
784 /* Only used in build directory testsuite_hooks.h. */
785 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
786 
787 /* Only used in build directory testsuite_hooks.h. */
788 #define _GLIBCXX_HAVE_LIMIT_RSS 1
789 
790 /* Only used in build directory testsuite_hooks.h. */
791 #define _GLIBCXX_HAVE_LIMIT_VMEM 0
792 
793 /* Define if futex syscall is available. */
794 #define _GLIBCXX_HAVE_LINUX_FUTEX 1
795 
796 /* Define to 1 if you have the <locale.h> header file. */
797 #define _GLIBCXX_HAVE_LOCALE_H 1
798 
799 /* Define to 1 if you have the `log10f' function. */
800 #define _GLIBCXX_HAVE_LOG10F 1
801 
802 /* Define to 1 if you have the `log10l' function. */
803 #define _GLIBCXX_HAVE_LOG10L 1
804 
805 /* Define to 1 if you have the `logf' function. */
806 #define _GLIBCXX_HAVE_LOGF 1
807 
808 /* Define to 1 if you have the `logl' function. */
809 #define _GLIBCXX_HAVE_LOGL 1
810 
811 /* Define to 1 if you have the <machine/endian.h> header file. */
812 /* #undef _GLIBCXX_HAVE_MACHINE_ENDIAN_H */
813 
814 /* Define to 1 if you have the <machine/param.h> header file. */
815 /* #undef _GLIBCXX_HAVE_MACHINE_PARAM_H */
816 
817 /* Define if mbstate_t exists in wchar.h. */
818 #define _GLIBCXX_HAVE_MBSTATE_T 1
819 
820 /* Define to 1 if you have the <memory.h> header file. */
821 #define _GLIBCXX_HAVE_MEMORY_H 1
822 
823 /* Define to 1 if you have the `modf' function. */
824 #define _GLIBCXX_HAVE_MODF 1
825 
826 /* Define to 1 if you have the `modff' function. */
827 #define _GLIBCXX_HAVE_MODFF 1
828 
829 /* Define to 1 if you have the `modfl' function. */
830 #define _GLIBCXX_HAVE_MODFL 1
831 
832 /* Define to 1 if you have the <nan.h> header file. */
833 /* #undef _GLIBCXX_HAVE_NAN_H */
834 
835 /* Define if poll is available in <poll.h>. */
836 #define _GLIBCXX_HAVE_POLL 1
837 
838 /* Define to 1 if you have the `powf' function. */
839 #define _GLIBCXX_HAVE_POWF 1
840 
841 /* Define to 1 if you have the `powl' function. */
842 #define _GLIBCXX_HAVE_POWL 1
843 
844 /* Define to 1 if you have the `qfpclass' function. */
845 /* #undef _GLIBCXX_HAVE_QFPCLASS */
846 
847 /* Define to 1 if you have the `quick_exit' function. */
848 #define _GLIBCXX_HAVE_QUICK_EXIT 1
849 
850 /* Define to 1 if you have the `setenv' function. */
851 #define _GLIBCXX_HAVE_SETENV 1
852 
853 /* Define to 1 if you have the `sincos' function. */
854 #define _GLIBCXX_HAVE_SINCOS 1
855 
856 /* Define to 1 if you have the `sincosf' function. */
857 #define _GLIBCXX_HAVE_SINCOSF 1
858 
859 /* Define to 1 if you have the `sincosl' function. */
860 #define _GLIBCXX_HAVE_SINCOSL 1
861 
862 /* Define to 1 if you have the `sinf' function. */
863 #define _GLIBCXX_HAVE_SINF 1
864 
865 /* Define to 1 if you have the `sinhf' function. */
866 #define _GLIBCXX_HAVE_SINHF 1
867 
868 /* Define to 1 if you have the `sinhl' function. */
869 #define _GLIBCXX_HAVE_SINHL 1
870 
871 /* Define to 1 if you have the `sinl' function. */
872 #define _GLIBCXX_HAVE_SINL 1
873 
874 /* Defined if sleep exists. */
875 /* #undef _GLIBCXX_HAVE_SLEEP */
876 
877 /* Define to 1 if you have the `sqrtf' function. */
878 #define _GLIBCXX_HAVE_SQRTF 1
879 
880 /* Define to 1 if you have the `sqrtl' function. */
881 #define _GLIBCXX_HAVE_SQRTL 1
882 
883 /* Define to 1 if you have the <stdalign.h> header file. */
884 #define _GLIBCXX_HAVE_STDALIGN_H 1
885 
886 /* Define to 1 if you have the <stdbool.h> header file. */
887 #define _GLIBCXX_HAVE_STDBOOL_H 1
888 
889 /* Define to 1 if you have the <stdint.h> header file. */
890 #define _GLIBCXX_HAVE_STDINT_H 1
891 
892 /* Define to 1 if you have the <stdlib.h> header file. */
893 #define _GLIBCXX_HAVE_STDLIB_H 1
894 
895 /* Define if strerror_l is available in <string.h>. */
896 #define _GLIBCXX_HAVE_STRERROR_L 1
897 
898 /* Define if strerror_r is available in <string.h>. */
899 #define _GLIBCXX_HAVE_STRERROR_R 1
900 
901 /* Define to 1 if you have the <strings.h> header file. */
902 #define _GLIBCXX_HAVE_STRINGS_H 1
903 
904 /* Define to 1 if you have the <string.h> header file. */
905 #define _GLIBCXX_HAVE_STRING_H 1
906 
907 /* Define to 1 if you have the `strtof' function. */
908 #define _GLIBCXX_HAVE_STRTOF 1
909 
910 /* Define to 1 if you have the `strtold' function. */
911 #define _GLIBCXX_HAVE_STRTOLD 1
912 
913 /* Define to 1 if `d_type' is a member of `struct dirent'. */
914 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1
915 
916 /* Define if strxfrm_l is available in <string.h>. */
917 #define _GLIBCXX_HAVE_STRXFRM_L 1
918 
919 /* Define to 1 if the target runtime linker supports binding the same symbol
920  to different versions. */
921 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
922 
923 /* Define to 1 if you have the <sys/filio.h> header file. */
924 /* #undef _GLIBCXX_HAVE_SYS_FILIO_H */
925 
926 /* Define to 1 if you have the <sys/ioctl.h> header file. */
927 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
928 
929 /* Define to 1 if you have the <sys/ipc.h> header file. */
930 #define _GLIBCXX_HAVE_SYS_IPC_H 1
931 
932 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
933 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
934 
935 /* Define to 1 if you have the <sys/machine.h> header file. */
936 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
937 
938 /* Define to 1 if you have the <sys/param.h> header file. */
939 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
940 
941 /* Define to 1 if you have the <sys/resource.h> header file. */
942 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
943 
944 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
945 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
946 
947 /* Define to 1 if you have the <sys/sem.h> header file. */
948 #define _GLIBCXX_HAVE_SYS_SEM_H 1
949 
950 /* Define to 1 if you have the <sys/statvfs.h> header file. */
951 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1
952 
953 /* Define to 1 if you have the <sys/stat.h> header file. */
954 #define _GLIBCXX_HAVE_SYS_STAT_H 1
955 
956 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
957 #define _GLIBCXX_HAVE_SYS_SYSINFO_H 1
958 
959 /* Define to 1 if you have the <sys/time.h> header file. */
960 #define _GLIBCXX_HAVE_SYS_TIME_H 1
961 
962 /* Define to 1 if you have the <sys/types.h> header file. */
963 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
964 
965 /* Define to 1 if you have the <sys/uio.h> header file. */
966 #define _GLIBCXX_HAVE_SYS_UIO_H 1
967 
968 /* Define if S_IFREG is available in <sys/stat.h>. */
969 /* #undef _GLIBCXX_HAVE_S_IFREG */
970 
971 /* Define if S_IFREG is available in <sys/stat.h>. */
972 #define _GLIBCXX_HAVE_S_ISREG 1
973 
974 /* Define to 1 if you have the `tanf' function. */
975 #define _GLIBCXX_HAVE_TANF 1
976 
977 /* Define to 1 if you have the `tanhf' function. */
978 #define _GLIBCXX_HAVE_TANHF 1
979 
980 /* Define to 1 if you have the `tanhl' function. */
981 #define _GLIBCXX_HAVE_TANHL 1
982 
983 /* Define to 1 if you have the `tanl' function. */
984 #define _GLIBCXX_HAVE_TANL 1
985 
986 /* Define to 1 if you have the <tgmath.h> header file. */
987 #define _GLIBCXX_HAVE_TGMATH_H 1
988 
989 /* Define to 1 if the target supports thread-local storage. */
990 #define _GLIBCXX_HAVE_TLS 1
991 
992 /* Define to 1 if you have the <unistd.h> header file. */
993 #define _GLIBCXX_HAVE_UNISTD_H 1
994 
995 /* Defined if usleep exists. */
996 /* #undef _GLIBCXX_HAVE_USLEEP */
997 
998 /* Define to 1 if you have the <utime.h> header file. */
999 #define _GLIBCXX_HAVE_UTIME_H 1
1000 
1001 /* Defined if vfwscanf exists. */
1002 #define _GLIBCXX_HAVE_VFWSCANF 1
1003 
1004 /* Defined if vswscanf exists. */
1005 #define _GLIBCXX_HAVE_VSWSCANF 1
1006 
1007 /* Defined if vwscanf exists. */
1008 #define _GLIBCXX_HAVE_VWSCANF 1
1009 
1010 /* Define to 1 if you have the <wchar.h> header file. */
1011 #define _GLIBCXX_HAVE_WCHAR_H 1
1012 
1013 /* Defined if wcstof exists. */
1014 #define _GLIBCXX_HAVE_WCSTOF 1
1015 
1016 /* Define to 1 if you have the <wctype.h> header file. */
1017 #define _GLIBCXX_HAVE_WCTYPE_H 1
1018 
1019 /* Defined if Sleep exists. */
1020 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
1021 
1022 /* Define if writev is available in <sys/uio.h>. */
1023 #define _GLIBCXX_HAVE_WRITEV 1
1024 
1025 /* Define to 1 if you have the `_acosf' function. */
1026 /* #undef _GLIBCXX_HAVE__ACOSF */
1027 
1028 /* Define to 1 if you have the `_acosl' function. */
1029 /* #undef _GLIBCXX_HAVE__ACOSL */
1030 
1031 /* Define to 1 if you have the `_asinf' function. */
1032 /* #undef _GLIBCXX_HAVE__ASINF */
1033 
1034 /* Define to 1 if you have the `_asinl' function. */
1035 /* #undef _GLIBCXX_HAVE__ASINL */
1036 
1037 /* Define to 1 if you have the `_atan2f' function. */
1038 /* #undef _GLIBCXX_HAVE__ATAN2F */
1039 
1040 /* Define to 1 if you have the `_atan2l' function. */
1041 /* #undef _GLIBCXX_HAVE__ATAN2L */
1042 
1043 /* Define to 1 if you have the `_atanf' function. */
1044 /* #undef _GLIBCXX_HAVE__ATANF */
1045 
1046 /* Define to 1 if you have the `_atanl' function. */
1047 /* #undef _GLIBCXX_HAVE__ATANL */
1048 
1049 /* Define to 1 if you have the `_ceilf' function. */
1050 /* #undef _GLIBCXX_HAVE__CEILF */
1051 
1052 /* Define to 1 if you have the `_ceill' function. */
1053 /* #undef _GLIBCXX_HAVE__CEILL */
1054 
1055 /* Define to 1 if you have the `_cosf' function. */
1056 /* #undef _GLIBCXX_HAVE__COSF */
1057 
1058 /* Define to 1 if you have the `_coshf' function. */
1059 /* #undef _GLIBCXX_HAVE__COSHF */
1060 
1061 /* Define to 1 if you have the `_coshl' function. */
1062 /* #undef _GLIBCXX_HAVE__COSHL */
1063 
1064 /* Define to 1 if you have the `_cosl' function. */
1065 /* #undef _GLIBCXX_HAVE__COSL */
1066 
1067 /* Define to 1 if you have the `_expf' function. */
1068 /* #undef _GLIBCXX_HAVE__EXPF */
1069 
1070 /* Define to 1 if you have the `_expl' function. */
1071 /* #undef _GLIBCXX_HAVE__EXPL */
1072 
1073 /* Define to 1 if you have the `_fabsf' function. */
1074 /* #undef _GLIBCXX_HAVE__FABSF */
1075 
1076 /* Define to 1 if you have the `_fabsl' function. */
1077 /* #undef _GLIBCXX_HAVE__FABSL */
1078 
1079 /* Define to 1 if you have the `_finite' function. */
1080 /* #undef _GLIBCXX_HAVE__FINITE */
1081 
1082 /* Define to 1 if you have the `_finitef' function. */
1083 /* #undef _GLIBCXX_HAVE__FINITEF */
1084 
1085 /* Define to 1 if you have the `_finitel' function. */
1086 /* #undef _GLIBCXX_HAVE__FINITEL */
1087 
1088 /* Define to 1 if you have the `_floorf' function. */
1089 /* #undef _GLIBCXX_HAVE__FLOORF */
1090 
1091 /* Define to 1 if you have the `_floorl' function. */
1092 /* #undef _GLIBCXX_HAVE__FLOORL */
1093 
1094 /* Define to 1 if you have the `_fmodf' function. */
1095 /* #undef _GLIBCXX_HAVE__FMODF */
1096 
1097 /* Define to 1 if you have the `_fmodl' function. */
1098 /* #undef _GLIBCXX_HAVE__FMODL */
1099 
1100 /* Define to 1 if you have the `_fpclass' function. */
1101 /* #undef _GLIBCXX_HAVE__FPCLASS */
1102 
1103 /* Define to 1 if you have the `_frexpf' function. */
1104 /* #undef _GLIBCXX_HAVE__FREXPF */
1105 
1106 /* Define to 1 if you have the `_frexpl' function. */
1107 /* #undef _GLIBCXX_HAVE__FREXPL */
1108 
1109 /* Define to 1 if you have the `_hypot' function. */
1110 /* #undef _GLIBCXX_HAVE__HYPOT */
1111 
1112 /* Define to 1 if you have the `_hypotf' function. */
1113 /* #undef _GLIBCXX_HAVE__HYPOTF */
1114 
1115 /* Define to 1 if you have the `_hypotl' function. */
1116 /* #undef _GLIBCXX_HAVE__HYPOTL */
1117 
1118 /* Define to 1 if you have the `_isinf' function. */
1119 /* #undef _GLIBCXX_HAVE__ISINF */
1120 
1121 /* Define to 1 if you have the `_isinff' function. */
1122 /* #undef _GLIBCXX_HAVE__ISINFF */
1123 
1124 /* Define to 1 if you have the `_isinfl' function. */
1125 /* #undef _GLIBCXX_HAVE__ISINFL */
1126 
1127 /* Define to 1 if you have the `_isnan' function. */
1128 /* #undef _GLIBCXX_HAVE__ISNAN */
1129 
1130 /* Define to 1 if you have the `_isnanf' function. */
1131 /* #undef _GLIBCXX_HAVE__ISNANF */
1132 
1133 /* Define to 1 if you have the `_isnanl' function. */
1134 /* #undef _GLIBCXX_HAVE__ISNANL */
1135 
1136 /* Define to 1 if you have the `_ldexpf' function. */
1137 /* #undef _GLIBCXX_HAVE__LDEXPF */
1138 
1139 /* Define to 1 if you have the `_ldexpl' function. */
1140 /* #undef _GLIBCXX_HAVE__LDEXPL */
1141 
1142 /* Define to 1 if you have the `_log10f' function. */
1143 /* #undef _GLIBCXX_HAVE__LOG10F */
1144 
1145 /* Define to 1 if you have the `_log10l' function. */
1146 /* #undef _GLIBCXX_HAVE__LOG10L */
1147 
1148 /* Define to 1 if you have the `_logf' function. */
1149 /* #undef _GLIBCXX_HAVE__LOGF */
1150 
1151 /* Define to 1 if you have the `_logl' function. */
1152 /* #undef _GLIBCXX_HAVE__LOGL */
1153 
1154 /* Define to 1 if you have the `_modf' function. */
1155 /* #undef _GLIBCXX_HAVE__MODF */
1156 
1157 /* Define to 1 if you have the `_modff' function. */
1158 /* #undef _GLIBCXX_HAVE__MODFF */
1159 
1160 /* Define to 1 if you have the `_modfl' function. */
1161 /* #undef _GLIBCXX_HAVE__MODFL */
1162 
1163 /* Define to 1 if you have the `_powf' function. */
1164 /* #undef _GLIBCXX_HAVE__POWF */
1165 
1166 /* Define to 1 if you have the `_powl' function. */
1167 /* #undef _GLIBCXX_HAVE__POWL */
1168 
1169 /* Define to 1 if you have the `_qfpclass' function. */
1170 /* #undef _GLIBCXX_HAVE__QFPCLASS */
1171 
1172 /* Define to 1 if you have the `_sincos' function. */
1173 /* #undef _GLIBCXX_HAVE__SINCOS */
1174 
1175 /* Define to 1 if you have the `_sincosf' function. */
1176 /* #undef _GLIBCXX_HAVE__SINCOSF */
1177 
1178 /* Define to 1 if you have the `_sincosl' function. */
1179 /* #undef _GLIBCXX_HAVE__SINCOSL */
1180 
1181 /* Define to 1 if you have the `_sinf' function. */
1182 /* #undef _GLIBCXX_HAVE__SINF */
1183 
1184 /* Define to 1 if you have the `_sinhf' function. */
1185 /* #undef _GLIBCXX_HAVE__SINHF */
1186 
1187 /* Define to 1 if you have the `_sinhl' function. */
1188 /* #undef _GLIBCXX_HAVE__SINHL */
1189 
1190 /* Define to 1 if you have the `_sinl' function. */
1191 /* #undef _GLIBCXX_HAVE__SINL */
1192 
1193 /* Define to 1 if you have the `_sqrtf' function. */
1194 /* #undef _GLIBCXX_HAVE__SQRTF */
1195 
1196 /* Define to 1 if you have the `_sqrtl' function. */
1197 /* #undef _GLIBCXX_HAVE__SQRTL */
1198 
1199 /* Define to 1 if you have the `_tanf' function. */
1200 /* #undef _GLIBCXX_HAVE__TANF */
1201 
1202 /* Define to 1 if you have the `_tanhf' function. */
1203 /* #undef _GLIBCXX_HAVE__TANHF */
1204 
1205 /* Define to 1 if you have the `_tanhl' function. */
1206 /* #undef _GLIBCXX_HAVE__TANHL */
1207 
1208 /* Define to 1 if you have the `_tanl' function. */
1209 /* #undef _GLIBCXX_HAVE__TANL */
1210 
1211 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
1212 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
1213 
1214 /* Define as const if the declaration of iconv() needs const. */
1215 #define _GLIBCXX_ICONV_CONST
1216 
1217 /* Define to the sub-directory in which libtool stores uninstalled libraries.
1218  */
1219 #define LT_OBJDIR ".libs/"
1220 
1221 /* Name of package */
1222 /* #undef _GLIBCXX_PACKAGE */
1223 
1224 /* Define to the address where bug reports for this package should be sent. */
1225 #define _GLIBCXX_PACKAGE_BUGREPORT ""
1226 
1227 /* Define to the full name of this package. */
1228 #define _GLIBCXX_PACKAGE_NAME "package-unused"
1229 
1230 /* Define to the full name and version of this package. */
1231 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
1232 
1233 /* Define to the one symbol short name of this package. */
1234 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
1235 
1236 /* Define to the home page for this package. */
1237 #define _GLIBCXX_PACKAGE_URL ""
1238 
1239 /* Define to the version of this package. */
1240 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
1241 
1242 /* The size of `char', as computed by sizeof. */
1243 /* #undef SIZEOF_CHAR */
1244 
1245 /* The size of `int', as computed by sizeof. */
1246 /* #undef SIZEOF_INT */
1247 
1248 /* The size of `long', as computed by sizeof. */
1249 /* #undef SIZEOF_LONG */
1250 
1251 /* The size of `short', as computed by sizeof. */
1252 /* #undef SIZEOF_SHORT */
1253 
1254 /* The size of `void *', as computed by sizeof. */
1255 /* #undef SIZEOF_VOID_P */
1256 
1257 /* Define to 1 if you have the ANSI C header files. */
1258 #define STDC_HEADERS 1
1259 
1260 /* Version number of package */
1261 /* #undef _GLIBCXX_VERSION */
1262 
1263 /* Define if the compiler supports C++11 atomics. */
1264 #define _GLIBCXX_ATOMIC_BUILTINS 1
1265 
1266 /* Define to use concept checking code from the boost libraries. */
1267 /* #undef _GLIBCXX_CONCEPT_CHECKS */
1268 
1269 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
1270  undefined for platform defaults */
1271 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
1272 
1273 /* Define if gthreads library is available. */
1274 #define _GLIBCXX_HAS_GTHREADS 1
1275 
1276 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
1277 #define _GLIBCXX_HOSTED 1
1278 
1279 /* Define if compatibility should be provided for -mlong-double-64. */
1280 
1281 /* Define if ptrdiff_t is int. */
1282 #define _GLIBCXX_PTRDIFF_T_IS_INT 1
1283 
1284 /* Define if using setrlimit to set resource limits during "make check" */
1285 #define _GLIBCXX_RES_LIMITS 1
1286 
1287 /* Define if size_t is unsigned int. */
1288 #define _GLIBCXX_SIZE_T_IS_UINT 1
1289 
1290 /* Define if the compiler is configured for setjmp/longjmp exceptions. */
1291 /* #undef _GLIBCXX_SJLJ_EXCEPTIONS */
1292 
1293 /* Define to the value of the EOF integer constant. */
1294 #define _GLIBCXX_STDIO_EOF -1
1295 
1296 /* Define to the value of the SEEK_CUR integer constant. */
1297 #define _GLIBCXX_STDIO_SEEK_CUR 1
1298 
1299 /* Define to the value of the SEEK_END integer constant. */
1300 #define _GLIBCXX_STDIO_SEEK_END 2
1301 
1302 /* Define to use symbol versioning in the shared library. */
1303 #define _GLIBCXX_SYMVER 1
1304 
1305 /* Define to use darwin versioning in the shared library. */
1306 /* #undef _GLIBCXX_SYMVER_DARWIN */
1307 
1308 /* Define to use GNU versioning in the shared library. */
1309 #define _GLIBCXX_SYMVER_GNU 1
1310 
1311 /* Define to use GNU namespace versioning in the shared library. */
1312 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
1313 
1314 /* Define to use Sun versioning in the shared library. */
1315 /* #undef _GLIBCXX_SYMVER_SUN */
1316 
1317 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
1318  <stdio.h>, and <stdlib.h> can be used or exposed. */
1319 #define _GLIBCXX_USE_C99 1
1320 
1321 /* Define if C99 functions in <complex.h> should be used in <complex>. Using
1322  compiler builtins for these functions requires corresponding C99 library
1323  functions to be present. */
1324 #define _GLIBCXX_USE_C99_COMPLEX 1
1325 
1326 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
1327  Using compiler builtins for these functions requires corresponding C99
1328  library functions to be present. */
1329 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
1330 
1331 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
1332  namespace std::tr1. */
1333 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
1334 
1335 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
1336  namespace std::tr1. */
1337 #define _GLIBCXX_USE_C99_FENV_TR1 1
1338 
1339 /* Define if C99 functions in <inttypes.h> should be imported in
1340  <tr1/cinttypes> in namespace std::tr1. */
1341 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
1342 
1343 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
1344  <tr1/cinttypes> in namespace std::tr1. */
1345 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
1346 
1347 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1348  in namespace std. */
1349 #define _GLIBCXX_USE_C99_MATH 1
1350 
1351 /* Define if C99 functions or macros in <math.h> should be imported in
1352  <tr1/cmath> in namespace std::tr1. */
1353 #define _GLIBCXX_USE_C99_MATH_TR1 1
1354 
1355 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
1356  namespace std::tr1. */
1357 #define _GLIBCXX_USE_C99_STDINT_TR1 1
1358 
1359 /* Defined if clock_gettime syscall has monotonic and realtime clock support.
1360  */
1361 /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */
1362 
1363 /* Defined if clock_gettime has monotonic clock support. */
1364 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
1365 
1366 /* Defined if clock_gettime has realtime clock support. */
1367 #define _GLIBCXX_USE_CLOCK_REALTIME 1
1368 
1369 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
1370  this host. */
1371 #define _GLIBCXX_USE_DECIMAL_FLOAT 1
1372 
1373 /* Define if fchmod is available in <sys/stat.h>. */
1374 #define _GLIBCXX_USE_FCHMOD 1
1375 
1376 /* Define if fchmodat is available in <sys/stat.h>. */
1377 #define _GLIBCXX_USE_FCHMODAT 1
1378 
1379 /* Define if __float128 is supported on this host. */
1380 #define _GLIBCXX_USE_FLOAT128 1
1381 
1382 /* Defined if gettimeofday is available. */
1383 #define _GLIBCXX_USE_GETTIMEOFDAY 1
1384 
1385 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
1386 #define _GLIBCXX_USE_GET_NPROCS 1
1387 
1388 /* Define if __int128 is supported on this host. */
1389 /* #undef _GLIBCXX_USE_INT128 */
1390 
1391 /* Define if LFS support is available. */
1392 #define _GLIBCXX_USE_LFS 1
1393 
1394 /* Define if code specialized for long long should be used. */
1395 #define _GLIBCXX_USE_LONG_LONG 1
1396 
1397 /* Defined if nanosleep is available. */
1398 #define _GLIBCXX_USE_NANOSLEEP 1
1399 
1400 /* Define if NLS translations are to be used. */
1401 #define _GLIBCXX_USE_NLS 1
1402 
1403 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
1404 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
1405 
1406 /* Define if POSIX read/write locks are available in <gthr.h>. */
1407 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1
1408 
1409 /* Define if /dev/random and /dev/urandom are available for the random_device
1410  of TR1 (Chapter 5.1). */
1411 #define _GLIBCXX_USE_RANDOM_TR1 1
1412 
1413 /* Define if usable realpath is available in <stdlib.h>. */
1414 #define _GLIBCXX_USE_REALPATH 1
1415 
1416 /* Defined if sched_yield is available. */
1417 #define _GLIBCXX_USE_SCHED_YIELD 1
1418 
1419 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
1420 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
1421 
1422 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
1423 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
1424 
1425 /* Define if sendfile is available in <sys/sendfile.h>. */
1426 #define _GLIBCXX_USE_SENDFILE 1
1427 
1428 /* Define if struct stat has timespec members. */
1429 #define _GLIBCXX_USE_ST_MTIM 1
1430 
1431 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
1432 /* #undef _GLIBCXX_USE_SYSCTL_HW_NCPU */
1433 
1434 /* Define if obsolescent tmpnam is available in <stdio.h>. */
1435 #define _GLIBCXX_USE_TMPNAM 1
1436 
1437 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and
1438  AT_FDCWD in <fcntl.h>. */
1439 #define _GLIBCXX_USE_UTIMENSAT 1
1440 
1441 /* Define if code specialized for wchar_t should be used. */
1442 #define _GLIBCXX_USE_WCHAR_T 1
1443 
1444 /* Define to 1 if a verbose library is built, or 0 otherwise. */
1445 #define _GLIBCXX_VERBOSE 1
1446 
1447 /* Defined if as can handle rdrand. */
1448 #define _GLIBCXX_X86_RDRAND 1
1449 
1450 /* Define to 1 if mutex_timedlock is available. */
1451 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 1
1452 
1453 /* Define if all C++11 floating point overloads are available in <math.h>. */
1454 #if __cplusplus >= 201103L
1455 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */
1456 #endif
1457 
1458 /* Define if all C++11 integral type overloads are available in <math.h>. */
1459 #if __cplusplus >= 201103L
1460 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */
1461 #endif
1462 
1463 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1464 # define _GLIBCXX_HAVE_ACOSF 1
1465 # define acosf _acosf
1466 #endif
1467 
1468 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1469 # define _GLIBCXX_HAVE_ACOSL 1
1470 # define acosl _acosl
1471 #endif
1472 
1473 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1474 # define _GLIBCXX_HAVE_ASINF 1
1475 # define asinf _asinf
1476 #endif
1477 
1478 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1479 # define _GLIBCXX_HAVE_ASINL 1
1480 # define asinl _asinl
1481 #endif
1482 
1483 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
1484 # define _GLIBCXX_HAVE_ATAN2F 1
1485 # define atan2f _atan2f
1486 #endif
1487 
1488 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
1489 # define _GLIBCXX_HAVE_ATAN2L 1
1490 # define atan2l _atan2l
1491 #endif
1492 
1493 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1494 # define _GLIBCXX_HAVE_ATANF 1
1495 # define atanf _atanf
1496 #endif
1497 
1498 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1499 # define _GLIBCXX_HAVE_ATANL 1
1500 # define atanl _atanl
1501 #endif
1502 
1503 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1504 # define _GLIBCXX_HAVE_CEILF 1
1505 # define ceilf _ceilf
1506 #endif
1507 
1508 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1509 # define _GLIBCXX_HAVE_CEILL 1
1510 # define ceill _ceill
1511 #endif
1512 
1513 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1514 # define _GLIBCXX_HAVE_COSF 1
1515 # define cosf _cosf
1516 #endif
1517 
1518 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1519 # define _GLIBCXX_HAVE_COSHF 1
1520 # define coshf _coshf
1521 #endif
1522 
1523 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
1524 # define _GLIBCXX_HAVE_COSHL 1
1525 # define coshl _coshl
1526 #endif
1527 
1528 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
1529 # define _GLIBCXX_HAVE_COSL 1
1530 # define cosl _cosl
1531 #endif
1532 
1533 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
1534 # define _GLIBCXX_HAVE_EXPF 1
1535 # define expf _expf
1536 #endif
1537 
1538 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
1539 # define _GLIBCXX_HAVE_EXPL 1
1540 # define expl _expl
1541 #endif
1542 
1543 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
1544 # define _GLIBCXX_HAVE_FABSF 1
1545 # define fabsf _fabsf
1546 #endif
1547 
1548 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
1549 # define _GLIBCXX_HAVE_FABSL 1
1550 # define fabsl _fabsl
1551 #endif
1552 
1553 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
1554 # define _GLIBCXX_HAVE_FINITE 1
1555 # define finite _finite
1556 #endif
1557 
1558 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
1559 # define _GLIBCXX_HAVE_FINITEF 1
1560 # define finitef _finitef
1561 #endif
1562 
1563 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
1564 # define _GLIBCXX_HAVE_FINITEL 1
1565 # define finitel _finitel
1566 #endif
1567 
1568 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
1569 # define _GLIBCXX_HAVE_FLOORF 1
1570 # define floorf _floorf
1571 #endif
1572 
1573 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
1574 # define _GLIBCXX_HAVE_FLOORL 1
1575 # define floorl _floorl
1576 #endif
1577 
1578 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
1579 # define _GLIBCXX_HAVE_FMODF 1
1580 # define fmodf _fmodf
1581 #endif
1582 
1583 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
1584 # define _GLIBCXX_HAVE_FMODL 1
1585 # define fmodl _fmodl
1586 #endif
1587 
1588 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
1589 # define _GLIBCXX_HAVE_FPCLASS 1
1590 # define fpclass _fpclass
1591 #endif
1592 
1593 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
1594 # define _GLIBCXX_HAVE_FREXPF 1
1595 # define frexpf _frexpf
1596 #endif
1597 
1598 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
1599 # define _GLIBCXX_HAVE_FREXPL 1
1600 # define frexpl _frexpl
1601 #endif
1602 
1603 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
1604 # define _GLIBCXX_HAVE_HYPOT 1
1605 # define hypot _hypot
1606 #endif
1607 
1608 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
1609 # define _GLIBCXX_HAVE_HYPOTF 1
1610 # define hypotf _hypotf
1611 #endif
1612 
1613 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
1614 # define _GLIBCXX_HAVE_HYPOTL 1
1615 # define hypotl _hypotl
1616 #endif
1617 
1618 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
1619 # define _GLIBCXX_HAVE_ISINF 1
1620 # define isinf _isinf
1621 #endif
1622 
1623 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
1624 # define _GLIBCXX_HAVE_ISINFF 1
1625 # define isinff _isinff
1626 #endif
1627 
1628 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
1629 # define _GLIBCXX_HAVE_ISINFL 1
1630 # define isinfl _isinfl
1631 #endif
1632 
1633 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
1634 # define _GLIBCXX_HAVE_ISNAN 1
1635 # define isnan _isnan
1636 #endif
1637 
1638 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
1639 # define _GLIBCXX_HAVE_ISNANF 1
1640 # define isnanf _isnanf
1641 #endif
1642 
1643 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
1644 # define _GLIBCXX_HAVE_ISNANL 1
1645 # define isnanl _isnanl
1646 #endif
1647 
1648 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
1649 # define _GLIBCXX_HAVE_LDEXPF 1
1650 # define ldexpf _ldexpf
1651 #endif
1652 
1653 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
1654 # define _GLIBCXX_HAVE_LDEXPL 1
1655 # define ldexpl _ldexpl
1656 #endif
1657 
1658 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
1659 # define _GLIBCXX_HAVE_LOG10F 1
1660 # define log10f _log10f
1661 #endif
1662 
1663 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
1664 # define _GLIBCXX_HAVE_LOG10L 1
1665 # define log10l _log10l
1666 #endif
1667 
1668 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
1669 # define _GLIBCXX_HAVE_LOGF 1
1670 # define logf _logf
1671 #endif
1672 
1673 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
1674 # define _GLIBCXX_HAVE_LOGL 1
1675 # define logl _logl
1676 #endif
1677 
1678 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
1679 # define _GLIBCXX_HAVE_MODF 1
1680 # define modf _modf
1681 #endif
1682 
1683 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
1684 # define _GLIBCXX_HAVE_MODFF 1
1685 # define modff _modff
1686 #endif
1687 
1688 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
1689 # define _GLIBCXX_HAVE_MODFL 1
1690 # define modfl _modfl
1691 #endif
1692 
1693 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
1694 # define _GLIBCXX_HAVE_POWF 1
1695 # define powf _powf
1696 #endif
1697 
1698 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
1699 # define _GLIBCXX_HAVE_POWL 1
1700 # define powl _powl
1701 #endif
1702 
1703 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
1704 # define _GLIBCXX_HAVE_QFPCLASS 1
1705 # define qfpclass _qfpclass
1706 #endif
1707 
1708 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
1709 # define _GLIBCXX_HAVE_SINCOS 1
1710 # define sincos _sincos
1711 #endif
1712 
1713 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
1714 # define _GLIBCXX_HAVE_SINCOSF 1
1715 # define sincosf _sincosf
1716 #endif
1717 
1718 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
1719 # define _GLIBCXX_HAVE_SINCOSL 1
1720 # define sincosl _sincosl
1721 #endif
1722 
1723 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
1724 # define _GLIBCXX_HAVE_SINF 1
1725 # define sinf _sinf
1726 #endif
1727 
1728 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
1729 # define _GLIBCXX_HAVE_SINHF 1
1730 # define sinhf _sinhf
1731 #endif
1732 
1733 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
1734 # define _GLIBCXX_HAVE_SINHL 1
1735 # define sinhl _sinhl
1736 #endif
1737 
1738 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
1739 # define _GLIBCXX_HAVE_SINL 1
1740 # define sinl _sinl
1741 #endif
1742 
1743 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
1744 # define _GLIBCXX_HAVE_SQRTF 1
1745 # define sqrtf _sqrtf
1746 #endif
1747 
1748 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
1749 # define _GLIBCXX_HAVE_SQRTL 1
1750 # define sqrtl _sqrtl
1751 #endif
1752 
1753 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
1754 # define _GLIBCXX_HAVE_STRTOF 1
1755 # define strtof _strtof
1756 #endif
1757 
1758 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
1759 # define _GLIBCXX_HAVE_STRTOLD 1
1760 # define strtold _strtold
1761 #endif
1762 
1763 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
1764 # define _GLIBCXX_HAVE_TANF 1
1765 # define tanf _tanf
1766 #endif
1767 
1768 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
1769 # define _GLIBCXX_HAVE_TANHF 1
1770 # define tanhf _tanhf
1771 #endif
1772 
1773 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
1774 # define _GLIBCXX_HAVE_TANHL 1
1775 # define tanhl _tanhl
1776 #endif
1777 
1778 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
1779 # define _GLIBCXX_HAVE_TANL 1
1780 # define tanl _tanl
1781 #endif
1782 
1783 #endif // _GLIBCXX_CXX_CONFIG_H
GNU extensions for public use.
ISO C++ entities toplevel namespace is std.