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