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