xref: /netbsd-src/external/gpl3/gcc/lib/libstdc++-v3/arch/vax/c++config.h (revision 1c5494c11fbdd25aa0c5a097a474d07ff375f95d)
1 /* This file is automatically generated.  DO NOT EDIT! */
2 /* Generated from: NetBSD: mknative-gcc,v 1.118 2024/02/21 08:24:46 mrg Exp  */
3 /* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp  */
4 
5 // Predefined symbols and macros -*- C++ -*-
6 
7 // Copyright (C) 1997-2022 Free Software Foundation, Inc.
8 //
9 // This file is part of the GNU ISO C++ Library.  This library is free
10 // software; you can redistribute it and/or modify it under the
11 // terms of the GNU General Public License as published by the
12 // Free Software Foundation; either version 3, or (at your option)
13 // any later version.
14 
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 // GNU General Public License for more details.
19 
20 // Under Section 7 of GPL version 3, you are granted additional
21 // permissions described in the GCC Runtime Library Exception, version
22 // 3.1, as published by the Free Software Foundation.
23 
24 // You should have received a copy of the GNU General Public License and
25 // a copy of the GCC Runtime Library Exception along with this program;
26 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
27 // <http://www.gnu.org/licenses/>.
28 
29 /** @file bits/c++config.h
30  *  This is an internal header file, included by other library headers.
31  *  Do not attempt to use it directly. @headername{version}
32  */
33 
34 #ifndef _GLIBCXX_CXX_CONFIG_H
35 #define _GLIBCXX_CXX_CONFIG_H 1
36 
37 // The major release number for the GCC release the C++ library belongs to.
38 #define _GLIBCXX_RELEASE 12
39 
40 // The datestamp of the C++ library in compressed ISO date format.
41 #define __GLIBCXX__ 20240620
42 
43 // Macros for various attributes.
44 //   _GLIBCXX_PURE
45 //   _GLIBCXX_CONST
46 //   _GLIBCXX_NORETURN
47 //   _GLIBCXX_NOTHROW
48 //   _GLIBCXX_VISIBILITY
49 #ifndef _GLIBCXX_PURE
50 # define _GLIBCXX_PURE __attribute__ ((__pure__))
51 #endif
52 
53 #ifndef _GLIBCXX_CONST
54 # define _GLIBCXX_CONST __attribute__ ((__const__))
55 #endif
56 
57 #ifndef _GLIBCXX_NORETURN
58 # define _GLIBCXX_NORETURN __attribute__ ((__noreturn__))
59 #endif
60 
61 // See below for C++
62 #ifndef _GLIBCXX_NOTHROW
63 # ifndef __cplusplus
64 #  define _GLIBCXX_NOTHROW __attribute__((__nothrow__))
65 # endif
66 #endif
67 
68 // Macros for visibility attributes.
69 //   _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
70 //   _GLIBCXX_VISIBILITY
71 # define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY 1
72 
73 #if _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY
74 # define _GLIBCXX_VISIBILITY(V) __attribute__ ((__visibility__ (#V)))
75 #else
76 // If this is not supplied by the OS-specific or CPU-specific
77 // headers included below, it will be defined to an empty default.
78 # define _GLIBCXX_VISIBILITY(V) _GLIBCXX_PSEUDO_VISIBILITY(V)
79 #endif
80 
81 // Macros for deprecated attributes.
82 //   _GLIBCXX_USE_DEPRECATED
83 //   _GLIBCXX_DEPRECATED
84 //   _GLIBCXX_DEPRECATED_SUGGEST( string-literal )
85 //   _GLIBCXX11_DEPRECATED
86 //   _GLIBCXX11_DEPRECATED_SUGGEST( string-literal )
87 //   _GLIBCXX14_DEPRECATED
88 //   _GLIBCXX14_DEPRECATED_SUGGEST( string-literal )
89 //   _GLIBCXX17_DEPRECATED
90 //   _GLIBCXX17_DEPRECATED_SUGGEST( string-literal )
91 //   _GLIBCXX20_DEPRECATED( string-literal )
92 //   _GLIBCXX20_DEPRECATED_SUGGEST( string-literal )
93 #ifndef _GLIBCXX_USE_DEPRECATED
94 # define _GLIBCXX_USE_DEPRECATED 1
95 #endif
96 
97 #if defined(__DEPRECATED)
98 # define _GLIBCXX_DEPRECATED __attribute__ ((__deprecated__))
99 # define _GLIBCXX_DEPRECATED_SUGGEST(ALT) \
100   __attribute__ ((__deprecated__ ("use '" ALT "' instead")))
101 #else
102 # define _GLIBCXX_DEPRECATED
103 # define _GLIBCXX_DEPRECATED_SUGGEST(ALT)
104 #endif
105 
106 #if defined(__DEPRECATED) && (__cplusplus >= 201103L)
107 # define _GLIBCXX11_DEPRECATED _GLIBCXX_DEPRECATED
108 # define _GLIBCXX11_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
109 #else
110 # define _GLIBCXX11_DEPRECATED
111 # define _GLIBCXX11_DEPRECATED_SUGGEST(ALT)
112 #endif
113 
114 #if defined(__DEPRECATED) && (__cplusplus >= 201402L)
115 # define _GLIBCXX14_DEPRECATED _GLIBCXX_DEPRECATED
116 # define _GLIBCXX14_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
117 #else
118 # define _GLIBCXX14_DEPRECATED
119 # define _GLIBCXX14_DEPRECATED_SUGGEST(ALT)
120 #endif
121 
122 #if defined(__DEPRECATED) && (__cplusplus >= 201703L)
123 # define _GLIBCXX17_DEPRECATED [[__deprecated__]]
124 # define _GLIBCXX17_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
125 #else
126 # define _GLIBCXX17_DEPRECATED
127 # define _GLIBCXX17_DEPRECATED_SUGGEST(ALT)
128 #endif
129 
130 #if defined(__DEPRECATED) && (__cplusplus >= 202002L)
131 # define _GLIBCXX20_DEPRECATED(MSG) [[deprecated(MSG)]]
132 # define _GLIBCXX20_DEPRECATED_SUGGEST(ALT) _GLIBCXX_DEPRECATED_SUGGEST(ALT)
133 #else
134 # define _GLIBCXX20_DEPRECATED(MSG)
135 # define _GLIBCXX20_DEPRECATED_SUGGEST(ALT)
136 #endif
137 
138 // Macros for ABI tag attributes.
139 #ifndef _GLIBCXX_ABI_TAG_CXX11
140 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
141 #endif
142 
143 // Macro to warn about unused results.
144 #if __cplusplus >= 201703L
145 # define _GLIBCXX_NODISCARD [[__nodiscard__]]
146 #else
147 # define _GLIBCXX_NODISCARD
148 #endif
149 
150 
151 
152 #if __cplusplus
153 
154 // Macro for constexpr, to support in mixed 03/0x mode.
155 #ifndef _GLIBCXX_CONSTEXPR
156 # if __cplusplus >= 201103L
157 #  define _GLIBCXX_CONSTEXPR constexpr
158 #  define _GLIBCXX_USE_CONSTEXPR constexpr
159 # else
160 #  define _GLIBCXX_CONSTEXPR
161 #  define _GLIBCXX_USE_CONSTEXPR const
162 # endif
163 #endif
164 
165 #ifndef _GLIBCXX14_CONSTEXPR
166 # if __cplusplus >= 201402L
167 #  define _GLIBCXX14_CONSTEXPR constexpr
168 # else
169 #  define _GLIBCXX14_CONSTEXPR
170 # endif
171 #endif
172 
173 #ifndef _GLIBCXX17_CONSTEXPR
174 # if __cplusplus >= 201703L
175 #  define _GLIBCXX17_CONSTEXPR constexpr
176 # else
177 #  define _GLIBCXX17_CONSTEXPR
178 # endif
179 #endif
180 
181 #ifndef _GLIBCXX20_CONSTEXPR
182 # if __cplusplus >= 202002L
183 #  define _GLIBCXX20_CONSTEXPR constexpr
184 # else
185 #  define _GLIBCXX20_CONSTEXPR
186 # endif
187 #endif
188 
189 #ifndef _GLIBCXX23_CONSTEXPR
190 # if __cplusplus >= 202100L
191 #  define _GLIBCXX23_CONSTEXPR constexpr
192 # else
193 #  define _GLIBCXX23_CONSTEXPR
194 # endif
195 #endif
196 
197 #ifndef _GLIBCXX17_INLINE
198 # if __cplusplus >= 201703L
199 #  define _GLIBCXX17_INLINE inline
200 # else
201 #  define _GLIBCXX17_INLINE
202 # endif
203 #endif
204 
205 // Macro for noexcept, to support in mixed 03/0x mode.
206 #ifndef _GLIBCXX_NOEXCEPT
207 # if __cplusplus >= 201103L
208 #  define _GLIBCXX_NOEXCEPT noexcept
209 #  define _GLIBCXX_NOEXCEPT_IF(...) noexcept(__VA_ARGS__)
210 #  define _GLIBCXX_USE_NOEXCEPT noexcept
211 #  define _GLIBCXX_THROW(_EXC)
212 # else
213 #  define _GLIBCXX_NOEXCEPT
214 #  define _GLIBCXX_NOEXCEPT_IF(...)
215 #  define _GLIBCXX_USE_NOEXCEPT throw()
216 #  define _GLIBCXX_THROW(_EXC) throw(_EXC)
217 # endif
218 #endif
219 
220 #ifndef _GLIBCXX_NOTHROW
221 # define _GLIBCXX_NOTHROW _GLIBCXX_USE_NOEXCEPT
222 #endif
223 
224 #ifndef _GLIBCXX_THROW_OR_ABORT
225 # if __cpp_exceptions
226 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (throw (_EXC))
227 # else
228 #  define _GLIBCXX_THROW_OR_ABORT(_EXC) (__builtin_abort())
229 # endif
230 #endif
231 
232 #if __cpp_noexcept_function_type
233 #define _GLIBCXX_NOEXCEPT_PARM , bool _NE
234 #define _GLIBCXX_NOEXCEPT_QUAL noexcept (_NE)
235 #else
236 #define _GLIBCXX_NOEXCEPT_PARM
237 #define _GLIBCXX_NOEXCEPT_QUAL
238 #endif
239 
240 // Macro for extern template, ie controlling template linkage via use
241 // of extern keyword on template declaration. As documented in the g++
242 // manual, it inhibits all implicit instantiations and is used
243 // throughout the library to avoid multiple weak definitions for
244 // required types that are already explicitly instantiated in the
245 // library binary. This substantially reduces the binary size of
246 // resulting executables.
247 // Special case: _GLIBCXX_EXTERN_TEMPLATE == -1 disallows extern
248 // templates only in basic_string, thus activating its debug-mode
249 // checks even at -O0.
250 # define _GLIBCXX_EXTERN_TEMPLATE 1
251 
252 /*
253   Outline of libstdc++ namespaces.
254 
255   namespace std
256   {
257     namespace __debug { }
258     namespace __parallel { }
259     namespace __cxx1998 { }
260 
261     namespace __detail {
262       namespace __variant { }				// C++17
263     }
264 
265     namespace rel_ops { }
266 
267     namespace tr1
268     {
269       namespace placeholders { }
270       namespace regex_constants { }
271       namespace __detail { }
272     }
273 
274     namespace tr2 { }
275 
276     namespace decimal { }
277 
278     namespace chrono { }				// C++11
279     namespace placeholders { }				// C++11
280     namespace regex_constants { }			// C++11
281     namespace this_thread { }				// C++11
282     inline namespace literals {				// C++14
283       inline namespace chrono_literals { }		// C++14
284       inline namespace complex_literals { }		// C++14
285       inline namespace string_literals { }		// C++14
286       inline namespace string_view_literals { }		// C++17
287     }
288   }
289 
290   namespace abi { }
291 
292   namespace __gnu_cxx
293   {
294     namespace __detail { }
295   }
296 
297   For full details see:
298   http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
299 */
300 namespace std
301 {
302   typedef __SIZE_TYPE__ 	size_t;
303   typedef __PTRDIFF_TYPE__	ptrdiff_t;
304 
305 #if __cplusplus >= 201103L
306   typedef decltype(nullptr)	nullptr_t;
307 #endif
308 
309 #pragma GCC visibility push(default)
310   // This allows the library to terminate without including all of <exception>
311   // and without making the declaration of std::terminate visible to users.
312   extern "C++" __attribute__ ((__noreturn__, __always_inline__))
__terminate()313   inline void __terminate() _GLIBCXX_USE_NOEXCEPT
314   {
315     void terminate() _GLIBCXX_USE_NOEXCEPT __attribute__ ((__noreturn__));
316     terminate();
317   }
318 #pragma GCC visibility pop
319 }
320 
321 # define _GLIBCXX_USE_DUAL_ABI 1
322 
323 #if ! _GLIBCXX_USE_DUAL_ABI
324 // Ignore any pre-defined value of _GLIBCXX_USE_CXX11_ABI
325 # undef _GLIBCXX_USE_CXX11_ABI
326 #endif
327 
328 #ifndef _GLIBCXX_USE_CXX11_ABI
329 # define _GLIBCXX_USE_CXX11_ABI 1
330 #endif
331 
332 #if _GLIBCXX_USE_CXX11_ABI
333 namespace std
334 {
335   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
336 }
337 namespace __gnu_cxx
338 {
339   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
340 }
341 # define _GLIBCXX_NAMESPACE_CXX11 __cxx11::
342 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11 namespace __cxx11 {
343 # define _GLIBCXX_END_NAMESPACE_CXX11 }
344 # define _GLIBCXX_DEFAULT_ABI_TAG _GLIBCXX_ABI_TAG_CXX11
345 #else
346 # define _GLIBCXX_NAMESPACE_CXX11
347 # define _GLIBCXX_BEGIN_NAMESPACE_CXX11
348 # define _GLIBCXX_END_NAMESPACE_CXX11
349 # define _GLIBCXX_DEFAULT_ABI_TAG
350 #endif
351 
352 // Non-zero if inline namespaces are used for versioning the entire library.
353 # define _GLIBCXX_INLINE_VERSION 0
354 
355 #if _GLIBCXX_INLINE_VERSION
356 // Inline namespace for symbol versioning of (nearly) everything in std.
357 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION namespace __8 {
358 # define _GLIBCXX_END_NAMESPACE_VERSION }
359 // Unused when everything in std is versioned anyway.
360 # define _GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE(X)
361 # define _GLIBCXX_END_INLINE_ABI_NAMESPACE(X)
362 
363 namespace std
364 {
365 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
366 #if __cplusplus >= 201402L
367   inline namespace literals {
368     inline namespace chrono_literals { }
369     inline namespace complex_literals { }
370     inline namespace string_literals { }
371 #if __cplusplus > 201402L
372     inline namespace string_view_literals { }
373 #endif // C++17
374   }
375 #endif // C++14
376 _GLIBCXX_END_NAMESPACE_VERSION
377 }
378 
379 namespace __gnu_cxx
380 {
381 inline _GLIBCXX_BEGIN_NAMESPACE_VERSION
382 _GLIBCXX_END_NAMESPACE_VERSION
383 }
384 
385 #else
386 // Unused.
387 # define _GLIBCXX_BEGIN_NAMESPACE_VERSION
388 # define _GLIBCXX_END_NAMESPACE_VERSION
389 // Used to version individual components, e.g. std::_V2::error_category.
390 # define _GLIBCXX_BEGIN_INLINE_ABI_NAMESPACE(X) inline namespace X {
391 # define _GLIBCXX_END_INLINE_ABI_NAMESPACE(X)   } // inline namespace X
392 #endif
393 
394 // Inline namespaces for special modes: debug, parallel.
395 #if defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL)
396 namespace std
397 {
398 _GLIBCXX_BEGIN_NAMESPACE_VERSION
399 
400   // Non-inline namespace for components replaced by alternates in active mode.
401   namespace __cxx1998
402   {
403 # if _GLIBCXX_USE_CXX11_ABI
404   inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { }
405 # endif
406   }
407 
408 _GLIBCXX_END_NAMESPACE_VERSION
409 
410   // Inline namespace for debug mode.
411 # ifdef _GLIBCXX_DEBUG
412   inline namespace __debug { }
413 # endif
414 
415   // Inline namespaces for parallel mode.
416 # ifdef _GLIBCXX_PARALLEL
417   inline namespace __parallel { }
418 # endif
419 }
420 
421 // Check for invalid usage and unsupported mixed-mode use.
422 # if defined(_GLIBCXX_DEBUG) && defined(_GLIBCXX_PARALLEL)
423 #  error illegal use of multiple inlined namespaces
424 # endif
425 
426 // Check for invalid use due to lack for weak symbols.
427 # if __NO_INLINE__ && !__GXX_WEAK__
428 #  warning currently using inlined namespace mode which may fail \
429    without inlining due to lack of weak symbols
430 # endif
431 #endif
432 
433 // Macros for namespace scope. Either namespace std:: or the name
434 // of some nested namespace within it corresponding to the active mode.
435 // _GLIBCXX_STD_A
436 // _GLIBCXX_STD_C
437 //
438 // Macros for opening/closing conditional namespaces.
439 // _GLIBCXX_BEGIN_NAMESPACE_ALGO
440 // _GLIBCXX_END_NAMESPACE_ALGO
441 // _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
442 // _GLIBCXX_END_NAMESPACE_CONTAINER
443 #if defined(_GLIBCXX_DEBUG)
444 # define _GLIBCXX_STD_C __cxx1998
445 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER \
446 	 namespace _GLIBCXX_STD_C {
447 # define _GLIBCXX_END_NAMESPACE_CONTAINER }
448 #else
449 # define _GLIBCXX_STD_C std
450 # define _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
451 # define _GLIBCXX_END_NAMESPACE_CONTAINER
452 #endif
453 
454 #ifdef _GLIBCXX_PARALLEL
455 # define _GLIBCXX_STD_A __cxx1998
456 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO \
457 	 namespace _GLIBCXX_STD_A {
458 # define _GLIBCXX_END_NAMESPACE_ALGO }
459 #else
460 # define _GLIBCXX_STD_A std
461 # define _GLIBCXX_BEGIN_NAMESPACE_ALGO
462 # define _GLIBCXX_END_NAMESPACE_ALGO
463 #endif
464 
465 // GLIBCXX_ABI Deprecated
466 // Define if compatibility should be provided for -mlong-double-64.
467 #undef _GLIBCXX_LONG_DOUBLE_COMPAT
468 
469 // Define if compatibility should be provided for alternative 128-bit long
470 // double formats. Not possible for Clang until __ibm128 is supported.
471 #ifndef __clang__
472 #undef _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT
473 #endif
474 
475 // Inline namespaces for long double 128 modes.
476 #if defined _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT \
477   && defined __LONG_DOUBLE_IEEE128__
478 namespace std
479 {
480   // Namespaces for 128-bit IEEE long double format on 64-bit POWER LE.
481   inline namespace __gnu_cxx_ieee128 { }
482   inline namespace __gnu_cxx11_ieee128 { }
483 }
484 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ieee128::
485 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ieee128 {
486 # define _GLIBCXX_END_NAMESPACE_LDBL }
487 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 __gnu_cxx11_ieee128::
488 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 namespace __gnu_cxx11_ieee128 {
489 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 }
490 
491 #else // _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT && IEEE128
492 
493 #if defined _GLIBCXX_LONG_DOUBLE_COMPAT && defined __LONG_DOUBLE_128__
494 namespace std
495 {
496   inline namespace __gnu_cxx_ldbl128 { }
497 }
498 # define _GLIBCXX_NAMESPACE_LDBL __gnu_cxx_ldbl128::
499 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL namespace __gnu_cxx_ldbl128 {
500 # define _GLIBCXX_END_NAMESPACE_LDBL }
501 #else
502 # define _GLIBCXX_NAMESPACE_LDBL
503 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL
504 # define _GLIBCXX_END_NAMESPACE_LDBL
505 #endif
506 
507 #if _GLIBCXX_USE_CXX11_ABI
508 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_CXX11
509 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_CXX11
510 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_CXX11
511 #else
512 # define _GLIBCXX_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_NAMESPACE_LDBL
513 # define _GLIBCXX_BEGIN_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_BEGIN_NAMESPACE_LDBL
514 # define _GLIBCXX_END_NAMESPACE_LDBL_OR_CXX11 _GLIBCXX_END_NAMESPACE_LDBL
515 #endif
516 
517 #endif // _GLIBCXX_LONG_DOUBLE_ALT128_COMPAT && IEEE128
518 
519 namespace std
520 {
521 #pragma GCC visibility push(default)
522   // Internal version of std::is_constant_evaluated().
523   // This can be used without checking if the compiler supports the feature.
524   // The macro _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED can be used to check if
525   // the compiler support is present to make this function work as expected.
526   _GLIBCXX_CONSTEXPR inline bool
__is_constant_evaluated()527   __is_constant_evaluated() _GLIBCXX_NOEXCEPT
528   {
529 #if __cpp_if_consteval >= 202106L
530 # define _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED 1
531     if consteval { return true; } else { return false; }
532 #elif __cplusplus >= 201103L && __has_builtin(__builtin_is_constant_evaluated)
533 # define _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED 1
534     return __builtin_is_constant_evaluated();
535 #else
536     return false;
537 #endif
538   }
539 #pragma GCC visibility pop
540 }
541 
542 // Debug Mode implies checking assertions.
543 #if defined(_GLIBCXX_DEBUG) && !defined(_GLIBCXX_ASSERTIONS)
544 # define _GLIBCXX_ASSERTIONS 1
545 #endif
546 
547 // Disable std::string explicit instantiation declarations in order to assert.
548 #ifdef _GLIBCXX_ASSERTIONS
549 # undef _GLIBCXX_EXTERN_TEMPLATE
550 # define _GLIBCXX_EXTERN_TEMPLATE -1
551 #endif
552 
553 
554 #if _GLIBCXX_HAVE_IS_CONSTANT_EVALUATED
555 # define __glibcxx_constexpr_assert(cond) \
556   if (std::__is_constant_evaluated() && !bool(cond))	\
557     __builtin_unreachable() /* precondition violation detected! */
558 #else
559 # define __glibcxx_constexpr_assert(unevaluated)
560 #endif
561 
562 #define _GLIBCXX_VERBOSE_ASSERT 1
563 
564 // Assert.
565 #if defined(_GLIBCXX_ASSERTIONS) \
566   || defined(_GLIBCXX_PARALLEL) || defined(_GLIBCXX_PARALLEL_ASSERTIONS)
567 # ifdef _GLIBCXX_VERBOSE_ASSERT
568 namespace std
569 {
570 #pragma GCC visibility push(default)
571   // Avoid the use of assert, because we're trying to keep the <cassert>
572   // include out of the mix.
573   extern "C++" _GLIBCXX_NORETURN
574   void
575   __glibcxx_assert_fail(const char* __file, int __line,
576 			const char* __function, const char* __condition)
577   _GLIBCXX_NOEXCEPT;
578 #pragma GCC visibility pop
579 }
580 #define __glibcxx_assert_impl(_Condition)				\
581   if (__builtin_expect(!bool(_Condition), false))			\
582   {									\
583     __glibcxx_constexpr_assert(false);					\
584     std::__glibcxx_assert_fail(__FILE__, __LINE__, __PRETTY_FUNCTION__,	\
585 			       #_Condition);				\
586   }
587 # else // ! VERBOSE_ASSERT
588 # define __glibcxx_assert_impl(_Condition)		\
589   if (__builtin_expect(!bool(_Condition), false))	\
590   {							\
591     __glibcxx_constexpr_assert(false);			\
592     __builtin_abort();					\
593   }
594 # endif
595 #endif
596 
597 #if defined(_GLIBCXX_ASSERTIONS)
598 # define __glibcxx_assert(cond) \
599   do { __glibcxx_assert_impl(cond); } while (false)
600 #else
601 # define __glibcxx_assert(cond) \
602   do { __glibcxx_constexpr_assert(cond); } while (false)
603 #endif
604 
605 // Macro indicating that TSAN is in use.
606 #if __SANITIZE_THREAD__
607 #  define _GLIBCXX_TSAN 1
608 #elif defined __has_feature
609 # if __has_feature(thread_sanitizer)
610 #  define _GLIBCXX_TSAN 1
611 # endif
612 #endif
613 
614 // Macros for race detectors.
615 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A) and
616 // _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A) should be used to explain
617 // atomic (lock-free) synchronization to race detectors:
618 // the race detector will infer a happens-before arc from the former to the
619 // latter when they share the same argument pointer.
620 //
621 // The most frequent use case for these macros (and the only case in the
622 // current implementation of the library) is atomic reference counting:
623 //   void _M_remove_reference()
624 //   {
625 //     _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&this->_M_refcount);
626 //     if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount, -1) <= 0)
627 //       {
628 //         _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&this->_M_refcount);
629 //         _M_destroy(__a);
630 //       }
631 //   }
632 // The annotations in this example tell the race detector that all memory
633 // accesses occurred when the refcount was positive do not race with
634 // memory accesses which occurred after the refcount became zero.
635 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE
636 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(A)
637 #endif
638 #ifndef _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER
639 # define  _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(A)
640 #endif
641 
642 // Macros for C linkage: define extern "C" linkage only when using C++.
643 # define _GLIBCXX_BEGIN_EXTERN_C extern "C" {
644 # define _GLIBCXX_END_EXTERN_C }
645 
646 # define _GLIBCXX_USE_ALLOCATOR_NEW 1
647 
648 #ifdef __SIZEOF_INT128__
649 #if ! defined __GLIBCXX_TYPE_INT_N_0 && ! defined __STRICT_ANSI__
650 // If __int128 is supported, we expect __GLIBCXX_TYPE_INT_N_0 to be defined
651 // unless the compiler is in strict mode. If it's not defined and the strict
652 // macro is not defined, something is wrong.
653 #warning "__STRICT_ANSI__ seems to have been undefined; this is not supported"
654 #endif
655 #endif
656 
657 #else // !__cplusplus
658 # define _GLIBCXX_BEGIN_EXTERN_C
659 # define _GLIBCXX_END_EXTERN_C
660 #endif
661 
662 
663 // First includes.
664 
665 // Pick up any OS-specific definitions.
666 #include <bits/os_defines.h>
667 
668 // Pick up any CPU-specific definitions.
669 #include <bits/cpu_defines.h>
670 
671 // If platform uses neither visibility nor psuedo-visibility,
672 // specify empty default for namespace annotation macros.
673 #ifndef _GLIBCXX_PSEUDO_VISIBILITY
674 # define _GLIBCXX_PSEUDO_VISIBILITY(V)
675 #endif
676 
677 // Certain function definitions that are meant to be overridable from
678 // user code are decorated with this macro.  For some targets, this
679 // macro causes these definitions to be weak.
680 #ifndef _GLIBCXX_WEAK_DEFINITION
681 # define _GLIBCXX_WEAK_DEFINITION
682 #endif
683 
684 // By default, we assume that __GXX_WEAK__ also means that there is support
685 // for declaring functions as weak while not defining such functions.  This
686 // allows for referring to functions provided by other libraries (e.g.,
687 // libitm) without depending on them if the respective features are not used.
688 #ifndef _GLIBCXX_USE_WEAK_REF
689 # define _GLIBCXX_USE_WEAK_REF __GXX_WEAK__
690 #endif
691 
692 // Conditionally enable annotations for the Transactional Memory TS on C++11.
693 // Most of the following conditions are due to limitations in the current
694 // implementation.
695 #if __cplusplus >= 201103L && _GLIBCXX_USE_CXX11_ABI			\
696   && _GLIBCXX_USE_DUAL_ABI && __cpp_transactional_memory >= 201500L	\
697   &&  !_GLIBCXX_FULLY_DYNAMIC_STRING && _GLIBCXX_USE_WEAK_REF		\
698   && _GLIBCXX_USE_ALLOCATOR_NEW
699 #define _GLIBCXX_TXN_SAFE transaction_safe
700 #define _GLIBCXX_TXN_SAFE_DYN transaction_safe_dynamic
701 #else
702 #define _GLIBCXX_TXN_SAFE
703 #define _GLIBCXX_TXN_SAFE_DYN
704 #endif
705 
706 #if __cplusplus > 201402L
707 // In C++17 mathematical special functions are in namespace std.
708 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
709 #elif __cplusplus >= 201103L && __STDCPP_WANT_MATH_SPEC_FUNCS__ != 0
710 // For C++11 and C++14 they are in namespace std when requested.
711 # define _GLIBCXX_USE_STD_SPEC_FUNCS 1
712 #endif
713 
714 // The remainder of the prewritten config is automatic; all the
715 // user hooks are listed above.
716 
717 // Create a boolean flag to be used to determine if --fast-math is set.
718 #ifdef __FAST_MATH__
719 # define _GLIBCXX_FAST_MATH 1
720 #else
721 # define _GLIBCXX_FAST_MATH 0
722 #endif
723 
724 // This marks string literals in header files to be extracted for eventual
725 // translation.  It is primarily used for messages in thrown exceptions; see
726 // src/functexcept.cc.  We use __N because the more traditional _N is used
727 // for something else under certain OSes (see BADNAMES).
728 #define __N(msgid)     (msgid)
729 
730 // For example, <windows.h> is known to #define min and max as macros...
731 #undef min
732 #undef max
733 
734 // N.B. these _GLIBCXX_USE_C99_XXX macros are defined unconditionally
735 // so they should be tested with #if not with #ifdef.
736 #if __cplusplus >= 201103L
737 # ifndef _GLIBCXX_USE_C99_MATH
738 #  define _GLIBCXX_USE_C99_MATH _GLIBCXX11_USE_C99_MATH
739 # endif
740 # ifndef _GLIBCXX_USE_C99_COMPLEX
741 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX11_USE_C99_COMPLEX
742 # endif
743 # ifndef _GLIBCXX_USE_C99_STDIO
744 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX11_USE_C99_STDIO
745 # endif
746 # ifndef _GLIBCXX_USE_C99_STDLIB
747 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX11_USE_C99_STDLIB
748 # endif
749 # ifndef _GLIBCXX_USE_C99_WCHAR
750 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX11_USE_C99_WCHAR
751 # endif
752 #else
753 # ifndef _GLIBCXX_USE_C99_MATH
754 #  define _GLIBCXX_USE_C99_MATH _GLIBCXX98_USE_C99_MATH
755 # endif
756 # ifndef _GLIBCXX_USE_C99_COMPLEX
757 # define _GLIBCXX_USE_C99_COMPLEX _GLIBCXX98_USE_C99_COMPLEX
758 # endif
759 # ifndef _GLIBCXX_USE_C99_STDIO
760 # define _GLIBCXX_USE_C99_STDIO _GLIBCXX98_USE_C99_STDIO
761 # endif
762 # ifndef _GLIBCXX_USE_C99_STDLIB
763 # define _GLIBCXX_USE_C99_STDLIB _GLIBCXX98_USE_C99_STDLIB
764 # endif
765 # ifndef _GLIBCXX_USE_C99_WCHAR
766 # define _GLIBCXX_USE_C99_WCHAR _GLIBCXX98_USE_C99_WCHAR
767 # endif
768 #endif
769 
770 // Unless explicitly specified, enable char8_t extensions only if the core
771 // language char8_t feature macro is defined.
772 #ifndef _GLIBCXX_USE_CHAR8_T
773 # ifdef __cpp_char8_t
774 #  define _GLIBCXX_USE_CHAR8_T 1
775 # endif
776 #endif
777 #ifdef _GLIBCXX_USE_CHAR8_T
778 # define __cpp_lib_char8_t 201907L
779 #endif
780 
781 /* Define if __float128 is supported on this host.  */
782 #if defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__)
783 /* For powerpc64 don't use __float128 when it's the same type as long double. */
784 # if !(defined(_GLIBCXX_LONG_DOUBLE_ALT128_COMPAT) && defined(__LONG_DOUBLE_IEEE128__))
785 #  undef _GLIBCXX_USE_FLOAT128
786 # endif
787 #endif
788 
789 // Define if float has the IEEE binary32 format.
790 #if __FLT_MANT_DIG__ == 24 \
791   && __FLT_MIN_EXP__ == -125 \
792   && __FLT_MAX_EXP__ == 128
793 # define _GLIBCXX_FLOAT_IS_IEEE_BINARY32 1
794 #endif
795 
796 // Define if double has the IEEE binary64 format.
797 #if __DBL_MANT_DIG__ == 53 \
798   && __DBL_MIN_EXP__ == -1021 \
799   && __DBL_MAX_EXP__ == 1024
800 # define _GLIBCXX_DOUBLE_IS_IEEE_BINARY64 1
801 #endif
802 
803 #ifdef __has_builtin
804 # ifdef __is_identifier
805 // Intel and older Clang require !__is_identifier for some built-ins:
806 #  define _GLIBCXX_HAS_BUILTIN(B) __has_builtin(B) || ! __is_identifier(B)
807 # else
808 #  define _GLIBCXX_HAS_BUILTIN(B) __has_builtin(B)
809 # endif
810 #endif
811 
812 #if _GLIBCXX_HAS_BUILTIN(__has_unique_object_representations)
813 # define _GLIBCXX_HAVE_BUILTIN_HAS_UNIQ_OBJ_REP 1
814 #endif
815 
816 #if _GLIBCXX_HAS_BUILTIN(__is_aggregate)
817 # define _GLIBCXX_HAVE_BUILTIN_IS_AGGREGATE 1
818 #endif
819 
820 #if _GLIBCXX_HAS_BUILTIN(__is_same)
821 #  define _GLIBCXX_HAVE_BUILTIN_IS_SAME 1
822 #endif
823 
824 #if _GLIBCXX_HAS_BUILTIN(__builtin_launder)
825 # define _GLIBCXX_HAVE_BUILTIN_LAUNDER 1
826 #endif
827 
828 #undef _GLIBCXX_HAS_BUILTIN
829 
830 // Mark code that should be ignored by the compiler, but seen by Doxygen.
831 #define _GLIBCXX_DOXYGEN_ONLY(X)
832 
833 // PSTL configuration
834 
835 #if __cplusplus >= 201703L
836 // This header is not installed for freestanding:
837 #if __has_include(<pstl/pstl_config.h>)
838 // Preserved here so we have some idea which version of upstream we've pulled in
839 // #define PSTL_VERSION 9000
840 
841 // For now this defaults to being based on the presence of Thread Building Blocks
842 # ifndef _GLIBCXX_USE_TBB_PAR_BACKEND
843 #  define _GLIBCXX_USE_TBB_PAR_BACKEND __has_include(<tbb/tbb.h>)
844 # endif
845 // This section will need some rework when a new (default) backend type is added
846 # if _GLIBCXX_USE_TBB_PAR_BACKEND
847 #  define _PSTL_PAR_BACKEND_TBB
848 # else
849 #  define _PSTL_PAR_BACKEND_SERIAL
850 # endif
851 
852 # define _PSTL_ASSERT(_Condition) __glibcxx_assert(_Condition)
853 # define _PSTL_ASSERT_MSG(_Condition, _Message) __glibcxx_assert(_Condition)
854 
855 #include <pstl/pstl_config.h>
856 #endif // __has_include
857 #endif // C++17
858 
859 // End of prewritten config; the settings discovered at configure time follow.
860 /* config.h.  Generated from config.h.in by configure.  */
861 /* config.h.in.  Generated from configure.ac by autoheader.  */
862 
863 /* Define to 1 if you have the `acosf' function. */
864 #define _GLIBCXX_HAVE_ACOSF 1
865 
866 /* Define to 1 if you have the `acosl' function. */
867 /* #undef _GLIBCXX_HAVE_ACOSL */
868 
869 /* Define to 1 if you have the `aligned_alloc' function. */
870 #define _GLIBCXX_HAVE_ALIGNED_ALLOC 1
871 
872 /* Define if arc4random is available in <stdlib.h>. */
873 #define _GLIBCXX_HAVE_ARC4RANDOM 1
874 
875 /* Define to 1 if you have the <arpa/inet.h> header file. */
876 #define _GLIBCXX_HAVE_ARPA_INET_H 1
877 
878 /* Define to 1 if you have the `asinf' function. */
879 #define _GLIBCXX_HAVE_ASINF 1
880 
881 /* Define to 1 if you have the `asinl' function. */
882 /* #undef _GLIBCXX_HAVE_ASINL */
883 
884 /* Define to 1 if the target assembler supports .symver directive. */
885 #define _GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE 1
886 
887 /* Define to 1 if you have the `atan2f' function. */
888 #define _GLIBCXX_HAVE_ATAN2F 1
889 
890 /* Define to 1 if you have the `atan2l' function. */
891 #define _GLIBCXX_HAVE_ATAN2L 1
892 
893 /* Define to 1 if you have the `atanf' function. */
894 #define _GLIBCXX_HAVE_ATANF 1
895 
896 /* Define to 1 if you have the `atanl' function. */
897 /* #undef _GLIBCXX_HAVE_ATANL */
898 
899 /* Defined if shared_ptr reference counting should use atomic operations. */
900 /* #undef _GLIBCXX_HAVE_ATOMIC_LOCK_POLICY */
901 
902 /* Define to 1 if you have the `at_quick_exit' function. */
903 #define _GLIBCXX_HAVE_AT_QUICK_EXIT 1
904 
905 /* Define to 1 if the target assembler supports thread-local storage. */
906 /* #undef _GLIBCXX_HAVE_CC_TLS */
907 
908 /* Define to 1 if you have the `ceilf' function. */
909 #define _GLIBCXX_HAVE_CEILF 1
910 
911 /* Define to 1 if you have the `ceill' function. */
912 #define _GLIBCXX_HAVE_CEILL 1
913 
914 /* Define to 1 if you have the <complex.h> header file. */
915 #define _GLIBCXX_HAVE_COMPLEX_H 1
916 
917 /* Define to 1 if you have the `cosf' function. */
918 #define _GLIBCXX_HAVE_COSF 1
919 
920 /* Define to 1 if you have the `coshf' function. */
921 #define _GLIBCXX_HAVE_COSHF 1
922 
923 /* Define to 1 if you have the `coshl' function. */
924 /* #undef _GLIBCXX_HAVE_COSHL */
925 
926 /* Define to 1 if you have the `cosl' function. */
927 #define _GLIBCXX_HAVE_COSL 1
928 
929 /* Define to 1 if you have the declaration of `strnlen', and to 0 if you
930    don't. */
931 #define _GLIBCXX_HAVE_DECL_STRNLEN 1
932 
933 /* Define to 1 if you have the <dirent.h> header file. */
934 #define _GLIBCXX_HAVE_DIRENT_H 1
935 
936 /* Define if dirfd is available in <dirent.h>. */
937 /* #undef _GLIBCXX_HAVE_DIRFD */
938 
939 /* Define to 1 if you have the <dlfcn.h> header file. */
940 #define _GLIBCXX_HAVE_DLFCN_H 1
941 
942 /* Define to 1 if you have the <endian.h> header file. */
943 #define _GLIBCXX_HAVE_ENDIAN_H 1
944 
945 /* Define to 1 if GCC 4.6 supported std::exception_ptr for the target */
946 /* #undef _GLIBCXX_HAVE_EXCEPTION_PTR_SINCE_GCC46 */
947 
948 /* Define to 1 if you have the <execinfo.h> header file. */
949 #define _GLIBCXX_HAVE_EXECINFO_H 1
950 
951 /* Define to 1 if you have the `expf' function. */
952 #define _GLIBCXX_HAVE_EXPF 1
953 
954 /* Define to 1 if you have the `expl' function. */
955 /* #undef _GLIBCXX_HAVE_EXPL */
956 
957 /* Define to 1 if you have the `fabsf' function. */
958 #define _GLIBCXX_HAVE_FABSF 1
959 
960 /* Define to 1 if you have the `fabsl' function. */
961 #define _GLIBCXX_HAVE_FABSL 1
962 
963 /* Define to 1 if you have the <fcntl.h> header file. */
964 #define _GLIBCXX_HAVE_FCNTL_H 1
965 
966 /* Define if fdopendir is available in <dirent.h>. */
967 #define _GLIBCXX_HAVE_FDOPENDIR 1
968 
969 /* Define to 1 if you have the <fenv.h> header file. */
970 /* #undef _GLIBCXX_HAVE_FENV_H */
971 
972 /* Define to 1 if you have the `finite' function. */
973 #define _GLIBCXX_HAVE_FINITE 1
974 
975 /* Define to 1 if you have the `finitef' function. */
976 #define _GLIBCXX_HAVE_FINITEF 1
977 
978 /* Define to 1 if you have the `finitel' function. */
979 /* #undef _GLIBCXX_HAVE_FINITEL */
980 
981 /* Define to 1 if you have the <float.h> header file. */
982 #define _GLIBCXX_HAVE_FLOAT_H 1
983 
984 /* Define to 1 if you have the `floorf' function. */
985 #define _GLIBCXX_HAVE_FLOORF 1
986 
987 /* Define to 1 if you have the `floorl' function. */
988 #define _GLIBCXX_HAVE_FLOORL 1
989 
990 /* Define to 1 if you have the `fmodf' function. */
991 #define _GLIBCXX_HAVE_FMODF 1
992 
993 /* Define to 1 if you have the `fmodl' function. */
994 #define _GLIBCXX_HAVE_FMODL 1
995 
996 /* Define to 1 if you have the `fpclass' function. */
997 /* #undef _GLIBCXX_HAVE_FPCLASS */
998 
999 /* Define to 1 if you have the <fp.h> header file. */
1000 /* #undef _GLIBCXX_HAVE_FP_H */
1001 
1002 /* Define to 1 if you have the `frexpf' function. */
1003 #define _GLIBCXX_HAVE_FREXPF 1
1004 
1005 /* Define to 1 if you have the `frexpl' function. */
1006 #define _GLIBCXX_HAVE_FREXPL 1
1007 
1008 /* Define if getentropy is available in <unistd.h>. */
1009 #define _GLIBCXX_HAVE_GETENTROPY 1
1010 
1011 /* Define if _Unwind_GetIPInfo is available. */
1012 #define _GLIBCXX_HAVE_GETIPINFO 1
1013 
1014 /* Define if gets is available in <stdio.h> before C++14. */
1015 #define _GLIBCXX_HAVE_GETS 1
1016 
1017 /* Define to 1 if you have the `hypot' function. */
1018 #define _GLIBCXX_HAVE_HYPOT 1
1019 
1020 /* Define to 1 if you have the `hypotf' function. */
1021 #define _GLIBCXX_HAVE_HYPOTF 1
1022 
1023 /* Define to 1 if you have the `hypotl' function. */
1024 #define _GLIBCXX_HAVE_HYPOTL 1
1025 
1026 /* Define if you have the iconv() function. */
1027 #define _GLIBCXX_HAVE_ICONV 1
1028 
1029 /* Define to 1 if you have the <ieeefp.h> header file. */
1030 /* #undef _GLIBCXX_HAVE_IEEEFP_H */
1031 
1032 /* Define to 1 if you have the <inttypes.h> header file. */
1033 #define _GLIBCXX_HAVE_INTTYPES_H 1
1034 
1035 /* Define to 1 if you have the `isinf' function. */
1036 #define _GLIBCXX_HAVE_ISINF 1
1037 
1038 /* Define to 1 if you have the `isinff' function. */
1039 /* #undef _GLIBCXX_HAVE_ISINFF */
1040 
1041 /* Define to 1 if you have the `isinfl' function. */
1042 /* #undef _GLIBCXX_HAVE_ISINFL */
1043 
1044 /* Define to 1 if you have the `isnan' function. */
1045 #define _GLIBCXX_HAVE_ISNAN 1
1046 
1047 /* Define to 1 if you have the `isnanf' function. */
1048 #define _GLIBCXX_HAVE_ISNANF 1
1049 
1050 /* Define to 1 if you have the `isnanl' function. */
1051 /* #undef _GLIBCXX_HAVE_ISNANL */
1052 
1053 /* Defined if iswblank exists. */
1054 #define _GLIBCXX_HAVE_ISWBLANK 1
1055 
1056 /* Define if LC_MESSAGES is available in <locale.h>. */
1057 #define _GLIBCXX_HAVE_LC_MESSAGES 1
1058 
1059 /* Define to 1 if you have the `ldexpf' function. */
1060 #define _GLIBCXX_HAVE_LDEXPF 1
1061 
1062 /* Define to 1 if you have the `ldexpl' function. */
1063 #define _GLIBCXX_HAVE_LDEXPL 1
1064 
1065 /* Define to 1 if you have the <libintl.h> header file. */
1066 /* #undef _GLIBCXX_HAVE_LIBINTL_H */
1067 
1068 /* Only used in build directory testsuite_hooks.h. */
1069 #define _GLIBCXX_HAVE_LIMIT_AS 1
1070 
1071 /* Only used in build directory testsuite_hooks.h. */
1072 #define _GLIBCXX_HAVE_LIMIT_DATA 1
1073 
1074 /* Only used in build directory testsuite_hooks.h. */
1075 #define _GLIBCXX_HAVE_LIMIT_FSIZE 1
1076 
1077 /* Only used in build directory testsuite_hooks.h. */
1078 #define _GLIBCXX_HAVE_LIMIT_RSS 1
1079 
1080 /* Only used in build directory testsuite_hooks.h. */
1081 #define _GLIBCXX_HAVE_LIMIT_VMEM 1
1082 
1083 /* Define if link is available in <unistd.h>. */
1084 #define _GLIBCXX_HAVE_LINK 1
1085 
1086 /* Define to 1 if you have the <link.h> header file. */
1087 #define _GLIBCXX_HAVE_LINK_H 1
1088 
1089 /* Define if futex syscall is available. */
1090 /* #undef _GLIBCXX_HAVE_LINUX_FUTEX */
1091 
1092 /* Define to 1 if you have the <linux/random.h> header file. */
1093 /* #undef _GLIBCXX_HAVE_LINUX_RANDOM_H */
1094 
1095 /* Define to 1 if you have the <linux/types.h> header file. */
1096 /* #undef _GLIBCXX_HAVE_LINUX_TYPES_H */
1097 
1098 /* Define to 1 if you have the <locale.h> header file. */
1099 #define _GLIBCXX_HAVE_LOCALE_H 1
1100 
1101 /* Define to 1 if you have the `log10f' function. */
1102 #define _GLIBCXX_HAVE_LOG10F 1
1103 
1104 /* Define to 1 if you have the `log10l' function. */
1105 /* #undef _GLIBCXX_HAVE_LOG10L */
1106 
1107 /* Define to 1 if you have the `logf' function. */
1108 #define _GLIBCXX_HAVE_LOGF 1
1109 
1110 /* Define to 1 if you have the `logl' function. */
1111 /* #undef _GLIBCXX_HAVE_LOGL */
1112 
1113 /* Define to 1 if you have the <machine/endian.h> header file. */
1114 #define _GLIBCXX_HAVE_MACHINE_ENDIAN_H 1
1115 
1116 /* Define to 1 if you have the <machine/param.h> header file. */
1117 #define _GLIBCXX_HAVE_MACHINE_PARAM_H 1
1118 
1119 /* Define if mbstate_t exists in wchar.h. */
1120 #define _GLIBCXX_HAVE_MBSTATE_T 1
1121 
1122 /* Define to 1 if you have the `memalign' function. */
1123 /* #undef _GLIBCXX_HAVE_MEMALIGN */
1124 
1125 /* Define to 1 if you have the <memory.h> header file. */
1126 #define _GLIBCXX_HAVE_MEMORY_H 1
1127 
1128 /* Define to 1 if you have the `modf' function. */
1129 #define _GLIBCXX_HAVE_MODF 1
1130 
1131 /* Define to 1 if you have the `modff' function. */
1132 #define _GLIBCXX_HAVE_MODFF 1
1133 
1134 /* Define to 1 if you have the `modfl' function. */
1135 #define _GLIBCXX_HAVE_MODFL 1
1136 
1137 /* Define to 1 if you have the <nan.h> header file. */
1138 /* #undef _GLIBCXX_HAVE_NAN_H */
1139 
1140 /* Define to 1 if you have the <netdb.h> header file. */
1141 #define _GLIBCXX_HAVE_NETDB_H 1
1142 
1143 /* Define to 1 if you have the <netinet/in.h> header file. */
1144 #define _GLIBCXX_HAVE_NETINET_IN_H 1
1145 
1146 /* Define to 1 if you have the <netinet/tcp.h> header file. */
1147 #define _GLIBCXX_HAVE_NETINET_TCP_H 1
1148 
1149 /* Define if <math.h> defines obsolete isinf function. */
1150 /* #undef _GLIBCXX_HAVE_OBSOLETE_ISINF */
1151 
1152 /* Define if <math.h> defines obsolete isnan function. */
1153 /* #undef _GLIBCXX_HAVE_OBSOLETE_ISNAN */
1154 
1155 /* Define if openat is available in <fcntl.h>. */
1156 #define _GLIBCXX_HAVE_OPENAT 1
1157 
1158 /* Define if poll is available in <poll.h>. */
1159 #define _GLIBCXX_HAVE_POLL 1
1160 
1161 /* Define to 1 if you have the <poll.h> header file. */
1162 #define _GLIBCXX_HAVE_POLL_H 1
1163 
1164 /* Define to 1 if you have the `posix_memalign' function. */
1165 #define _GLIBCXX_HAVE_POSIX_MEMALIGN 1
1166 
1167 /* Define to 1 if POSIX Semaphores with sem_timedwait are available in
1168    <semaphore.h>. */
1169 /* #undef _GLIBCXX_HAVE_POSIX_SEMAPHORE */
1170 
1171 /* Define to 1 if you have the `powf' function. */
1172 #define _GLIBCXX_HAVE_POWF 1
1173 
1174 /* Define to 1 if you have the `powl' function. */
1175 #define _GLIBCXX_HAVE_POWL 1
1176 
1177 /* Define to 1 if you have the `qfpclass' function. */
1178 /* #undef _GLIBCXX_HAVE_QFPCLASS */
1179 
1180 /* Define to 1 if you have the `quick_exit' function. */
1181 #define _GLIBCXX_HAVE_QUICK_EXIT 1
1182 
1183 /* Define if readlink is available in <unistd.h>. */
1184 #define _GLIBCXX_HAVE_READLINK 1
1185 
1186 /* Define to 1 if you have the `secure_getenv' function. */
1187 /* #undef _GLIBCXX_HAVE_SECURE_GETENV */
1188 
1189 /* Define to 1 if you have the `setenv' function. */
1190 #define _GLIBCXX_HAVE_SETENV 1
1191 
1192 /* Define to 1 if you have the `sincos' function. */
1193 #define _GLIBCXX_HAVE_SINCOS 1
1194 
1195 /* Define to 1 if you have the `sincosf' function. */
1196 #define _GLIBCXX_HAVE_SINCOSF 1
1197 
1198 /* Define to 1 if you have the `sincosl' function. */
1199 #define _GLIBCXX_HAVE_SINCOSL 1
1200 
1201 /* Define to 1 if you have the `sinf' function. */
1202 #define _GLIBCXX_HAVE_SINF 1
1203 
1204 /* Define to 1 if you have the `sinhf' function. */
1205 #define _GLIBCXX_HAVE_SINHF 1
1206 
1207 /* Define to 1 if you have the `sinhl' function. */
1208 /* #undef _GLIBCXX_HAVE_SINHL */
1209 
1210 /* Define to 1 if you have the `sinl' function. */
1211 #define _GLIBCXX_HAVE_SINL 1
1212 
1213 /* Defined if sleep exists. */
1214 /* #undef _GLIBCXX_HAVE_SLEEP */
1215 
1216 /* Define to 1 if you have the `sockatmark' function. */
1217 #define _GLIBCXX_HAVE_SOCKATMARK 1
1218 
1219 /* Define to 1 if you have the `sqrtf' function. */
1220 #define _GLIBCXX_HAVE_SQRTF 1
1221 
1222 /* Define to 1 if you have the `sqrtl' function. */
1223 #define _GLIBCXX_HAVE_SQRTL 1
1224 
1225 /* Define if the <stacktrace> header is supported. */
1226 /* #undef _GLIBCXX_HAVE_STACKTRACE */
1227 
1228 /* Define to 1 if you have the <stdalign.h> header file. */
1229 #define _GLIBCXX_HAVE_STDALIGN_H 1
1230 
1231 /* Define to 1 if you have the <stdbool.h> header file. */
1232 #define _GLIBCXX_HAVE_STDBOOL_H 1
1233 
1234 /* Define to 1 if you have the <stdint.h> header file. */
1235 #define _GLIBCXX_HAVE_STDINT_H 1
1236 
1237 /* Define to 1 if you have the <stdlib.h> header file. */
1238 #define _GLIBCXX_HAVE_STDLIB_H 1
1239 
1240 /* Define if strerror_l is available in <string.h>. */
1241 /* #undef _GLIBCXX_HAVE_STRERROR_L */
1242 
1243 /* Define if strerror_r is available in <string.h>. */
1244 #define _GLIBCXX_HAVE_STRERROR_R 1
1245 
1246 /* Define to 1 if you have the <strings.h> header file. */
1247 #define _GLIBCXX_HAVE_STRINGS_H 1
1248 
1249 /* Define to 1 if you have the <string.h> header file. */
1250 #define _GLIBCXX_HAVE_STRING_H 1
1251 
1252 /* Define to 1 if you have the `strtof' function. */
1253 #define _GLIBCXX_HAVE_STRTOF 1
1254 
1255 /* Define to 1 if you have the `strtold' function. */
1256 #define _GLIBCXX_HAVE_STRTOLD 1
1257 
1258 /* Define to 1 if `d_type' is a member of `struct dirent'. */
1259 #define _GLIBCXX_HAVE_STRUCT_DIRENT_D_TYPE 1
1260 
1261 /* Define if strxfrm_l is available in <string.h>. */
1262 /* #undef _GLIBCXX_HAVE_STRXFRM_L */
1263 
1264 /* Define if symlink is available in <unistd.h>. */
1265 #define _GLIBCXX_HAVE_SYMLINK 1
1266 
1267 /* Define to 1 if the target runtime linker supports binding the same symbol
1268    to different versions. */
1269 #define _GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT 1
1270 
1271 /* Define to 1 if you have the <sys/filio.h> header file. */
1272 #define _GLIBCXX_HAVE_SYS_FILIO_H 1
1273 
1274 /* Define to 1 if you have the <sys/ioctl.h> header file. */
1275 #define _GLIBCXX_HAVE_SYS_IOCTL_H 1
1276 
1277 /* Define to 1 if you have the <sys/ipc.h> header file. */
1278 #define _GLIBCXX_HAVE_SYS_IPC_H 1
1279 
1280 /* Define to 1 if you have the <sys/isa_defs.h> header file. */
1281 /* #undef _GLIBCXX_HAVE_SYS_ISA_DEFS_H */
1282 
1283 /* Define to 1 if you have the <sys/machine.h> header file. */
1284 /* #undef _GLIBCXX_HAVE_SYS_MACHINE_H */
1285 
1286 /* Define to 1 if you have the <sys/mman.h> header file. */
1287 /* #undef _GLIBCXX_HAVE_SYS_MMAN_H */
1288 
1289 /* Define to 1 if you have the <sys/param.h> header file. */
1290 #define _GLIBCXX_HAVE_SYS_PARAM_H 1
1291 
1292 /* Define to 1 if you have the <sys/resource.h> header file. */
1293 #define _GLIBCXX_HAVE_SYS_RESOURCE_H 1
1294 
1295 /* Define to 1 if you have a suitable <sys/sdt.h> header file */
1296 /* #undef _GLIBCXX_HAVE_SYS_SDT_H */
1297 
1298 /* Define to 1 if you have the <sys/sem.h> header file. */
1299 #define _GLIBCXX_HAVE_SYS_SEM_H 1
1300 
1301 /* Define to 1 if you have the <sys/socket.h> header file. */
1302 #define _GLIBCXX_HAVE_SYS_SOCKET_H 1
1303 
1304 /* Define to 1 if you have the <sys/statvfs.h> header file. */
1305 #define _GLIBCXX_HAVE_SYS_STATVFS_H 1
1306 
1307 /* Define to 1 if you have the <sys/stat.h> header file. */
1308 #define _GLIBCXX_HAVE_SYS_STAT_H 1
1309 
1310 /* Define to 1 if you have the <sys/sysinfo.h> header file. */
1311 /* #undef _GLIBCXX_HAVE_SYS_SYSINFO_H */
1312 
1313 /* Define to 1 if you have the <sys/time.h> header file. */
1314 #define _GLIBCXX_HAVE_SYS_TIME_H 1
1315 
1316 /* Define to 1 if you have the <sys/types.h> header file. */
1317 #define _GLIBCXX_HAVE_SYS_TYPES_H 1
1318 
1319 /* Define to 1 if you have the <sys/uio.h> header file. */
1320 #define _GLIBCXX_HAVE_SYS_UIO_H 1
1321 
1322 /* Define if S_IFREG is available in <sys/stat.h>. */
1323 /* #undef _GLIBCXX_HAVE_S_IFREG */
1324 
1325 /* Define if S_ISREG is available in <sys/stat.h>. */
1326 #define _GLIBCXX_HAVE_S_ISREG 1
1327 
1328 /* Define to 1 if you have the `tanf' function. */
1329 #define _GLIBCXX_HAVE_TANF 1
1330 
1331 /* Define to 1 if you have the `tanhf' function. */
1332 #define _GLIBCXX_HAVE_TANHF 1
1333 
1334 /* Define to 1 if you have the `tanhl' function. */
1335 /* #undef _GLIBCXX_HAVE_TANHL */
1336 
1337 /* Define to 1 if you have the `tanl' function. */
1338 #define _GLIBCXX_HAVE_TANL 1
1339 
1340 /* Define to 1 if you have the <tgmath.h> header file. */
1341 #define _GLIBCXX_HAVE_TGMATH_H 1
1342 
1343 /* Define to 1 if you have the `timespec_get' function. */
1344 #define _GLIBCXX_HAVE_TIMESPEC_GET 1
1345 
1346 /* Define to 1 if the target supports thread-local storage. */
1347 #define _GLIBCXX_HAVE_TLS 1
1348 
1349 /* Define if truncate is available in <unistd.h>. */
1350 #define _GLIBCXX_HAVE_TRUNCATE 1
1351 
1352 /* Define to 1 if you have the <uchar.h> header file. */
1353 /* #undef _GLIBCXX_HAVE_UCHAR_H */
1354 
1355 /* Define to 1 if you have the <unistd.h> header file. */
1356 #define _GLIBCXX_HAVE_UNISTD_H 1
1357 
1358 /* Define if unlinkat is available in <fcntl.h>. */
1359 #define _GLIBCXX_HAVE_UNLINKAT 1
1360 
1361 /* Define to 1 if you have the `uselocale' function. */
1362 /* #undef _GLIBCXX_HAVE_USELOCALE */
1363 
1364 /* Defined if usleep exists. */
1365 /* #undef _GLIBCXX_HAVE_USLEEP */
1366 
1367 /* Define to 1 if you have the <utime.h> header file. */
1368 #define _GLIBCXX_HAVE_UTIME_H 1
1369 
1370 /* Defined if vfwscanf exists. */
1371 #define _GLIBCXX_HAVE_VFWSCANF 1
1372 
1373 /* Defined if vswscanf exists. */
1374 #define _GLIBCXX_HAVE_VSWSCANF 1
1375 
1376 /* Defined if vwscanf exists. */
1377 #define _GLIBCXX_HAVE_VWSCANF 1
1378 
1379 /* Define to 1 if you have the <wchar.h> header file. */
1380 #define _GLIBCXX_HAVE_WCHAR_H 1
1381 
1382 /* Defined if wcstof exists. */
1383 #define _GLIBCXX_HAVE_WCSTOF 1
1384 
1385 /* Define to 1 if you have the <wctype.h> header file. */
1386 #define _GLIBCXX_HAVE_WCTYPE_H 1
1387 
1388 /* Defined if Sleep exists. */
1389 /* #undef _GLIBCXX_HAVE_WIN32_SLEEP */
1390 
1391 /* Define if writev is available in <sys/uio.h>. */
1392 #define _GLIBCXX_HAVE_WRITEV 1
1393 
1394 /* Define to 1 if you have the <xlocale.h> header file. */
1395 /* #undef _GLIBCXX_HAVE_XLOCALE_H */
1396 
1397 /* Define to 1 if you have the `_acosf' function. */
1398 /* #undef _GLIBCXX_HAVE__ACOSF */
1399 
1400 /* Define to 1 if you have the `_acosl' function. */
1401 /* #undef _GLIBCXX_HAVE__ACOSL */
1402 
1403 /* Define to 1 if you have the `_aligned_malloc' function. */
1404 /* #undef _GLIBCXX_HAVE__ALIGNED_MALLOC */
1405 
1406 /* Define to 1 if you have the `_asinf' function. */
1407 /* #undef _GLIBCXX_HAVE__ASINF */
1408 
1409 /* Define to 1 if you have the `_asinl' function. */
1410 /* #undef _GLIBCXX_HAVE__ASINL */
1411 
1412 /* Define to 1 if you have the `_atan2f' function. */
1413 /* #undef _GLIBCXX_HAVE__ATAN2F */
1414 
1415 /* Define to 1 if you have the `_atan2l' function. */
1416 /* #undef _GLIBCXX_HAVE__ATAN2L */
1417 
1418 /* Define to 1 if you have the `_atanf' function. */
1419 /* #undef _GLIBCXX_HAVE__ATANF */
1420 
1421 /* Define to 1 if you have the `_atanl' function. */
1422 /* #undef _GLIBCXX_HAVE__ATANL */
1423 
1424 /* Define to 1 if you have the `_ceilf' function. */
1425 /* #undef _GLIBCXX_HAVE__CEILF */
1426 
1427 /* Define to 1 if you have the `_ceill' function. */
1428 /* #undef _GLIBCXX_HAVE__CEILL */
1429 
1430 /* Define to 1 if you have the `_cosf' function. */
1431 /* #undef _GLIBCXX_HAVE__COSF */
1432 
1433 /* Define to 1 if you have the `_coshf' function. */
1434 /* #undef _GLIBCXX_HAVE__COSHF */
1435 
1436 /* Define to 1 if you have the `_coshl' function. */
1437 /* #undef _GLIBCXX_HAVE__COSHL */
1438 
1439 /* Define to 1 if you have the `_cosl' function. */
1440 /* #undef _GLIBCXX_HAVE__COSL */
1441 
1442 /* Define to 1 if you have the `_expf' function. */
1443 /* #undef _GLIBCXX_HAVE__EXPF */
1444 
1445 /* Define to 1 if you have the `_expl' function. */
1446 /* #undef _GLIBCXX_HAVE__EXPL */
1447 
1448 /* Define to 1 if you have the `_fabsf' function. */
1449 /* #undef _GLIBCXX_HAVE__FABSF */
1450 
1451 /* Define to 1 if you have the `_fabsl' function. */
1452 /* #undef _GLIBCXX_HAVE__FABSL */
1453 
1454 /* Define to 1 if you have the `_finite' function. */
1455 /* #undef _GLIBCXX_HAVE__FINITE */
1456 
1457 /* Define to 1 if you have the `_finitef' function. */
1458 /* #undef _GLIBCXX_HAVE__FINITEF */
1459 
1460 /* Define to 1 if you have the `_finitel' function. */
1461 /* #undef _GLIBCXX_HAVE__FINITEL */
1462 
1463 /* Define to 1 if you have the `_floorf' function. */
1464 /* #undef _GLIBCXX_HAVE__FLOORF */
1465 
1466 /* Define to 1 if you have the `_floorl' function. */
1467 /* #undef _GLIBCXX_HAVE__FLOORL */
1468 
1469 /* Define to 1 if you have the `_fmodf' function. */
1470 /* #undef _GLIBCXX_HAVE__FMODF */
1471 
1472 /* Define to 1 if you have the `_fmodl' function. */
1473 /* #undef _GLIBCXX_HAVE__FMODL */
1474 
1475 /* Define to 1 if you have the `_fpclass' function. */
1476 /* #undef _GLIBCXX_HAVE__FPCLASS */
1477 
1478 /* Define to 1 if you have the `_frexpf' function. */
1479 /* #undef _GLIBCXX_HAVE__FREXPF */
1480 
1481 /* Define to 1 if you have the `_frexpl' function. */
1482 /* #undef _GLIBCXX_HAVE__FREXPL */
1483 
1484 /* Define to 1 if you have the `_hypot' function. */
1485 /* #undef _GLIBCXX_HAVE__HYPOT */
1486 
1487 /* Define to 1 if you have the `_hypotf' function. */
1488 /* #undef _GLIBCXX_HAVE__HYPOTF */
1489 
1490 /* Define to 1 if you have the `_hypotl' function. */
1491 /* #undef _GLIBCXX_HAVE__HYPOTL */
1492 
1493 /* Define to 1 if you have the `_isinf' function. */
1494 /* #undef _GLIBCXX_HAVE__ISINF */
1495 
1496 /* Define to 1 if you have the `_isinff' function. */
1497 /* #undef _GLIBCXX_HAVE__ISINFF */
1498 
1499 /* Define to 1 if you have the `_isinfl' function. */
1500 /* #undef _GLIBCXX_HAVE__ISINFL */
1501 
1502 /* Define to 1 if you have the `_isnan' function. */
1503 /* #undef _GLIBCXX_HAVE__ISNAN */
1504 
1505 /* Define to 1 if you have the `_isnanf' function. */
1506 /* #undef _GLIBCXX_HAVE__ISNANF */
1507 
1508 /* Define to 1 if you have the `_isnanl' function. */
1509 /* #undef _GLIBCXX_HAVE__ISNANL */
1510 
1511 /* Define to 1 if you have the `_ldexpf' function. */
1512 /* #undef _GLIBCXX_HAVE__LDEXPF */
1513 
1514 /* Define to 1 if you have the `_ldexpl' function. */
1515 /* #undef _GLIBCXX_HAVE__LDEXPL */
1516 
1517 /* Define to 1 if you have the `_log10f' function. */
1518 /* #undef _GLIBCXX_HAVE__LOG10F */
1519 
1520 /* Define to 1 if you have the `_log10l' function. */
1521 /* #undef _GLIBCXX_HAVE__LOG10L */
1522 
1523 /* Define to 1 if you have the `_logf' function. */
1524 /* #undef _GLIBCXX_HAVE__LOGF */
1525 
1526 /* Define to 1 if you have the `_logl' function. */
1527 /* #undef _GLIBCXX_HAVE__LOGL */
1528 
1529 /* Define to 1 if you have the `_modf' function. */
1530 /* #undef _GLIBCXX_HAVE__MODF */
1531 
1532 /* Define to 1 if you have the `_modff' function. */
1533 /* #undef _GLIBCXX_HAVE__MODFF */
1534 
1535 /* Define to 1 if you have the `_modfl' function. */
1536 /* #undef _GLIBCXX_HAVE__MODFL */
1537 
1538 /* Define to 1 if you have the `_powf' function. */
1539 /* #undef _GLIBCXX_HAVE__POWF */
1540 
1541 /* Define to 1 if you have the `_powl' function. */
1542 /* #undef _GLIBCXX_HAVE__POWL */
1543 
1544 /* Define to 1 if you have the `_qfpclass' function. */
1545 /* #undef _GLIBCXX_HAVE__QFPCLASS */
1546 
1547 /* Define to 1 if you have the `_sincos' function. */
1548 /* #undef _GLIBCXX_HAVE__SINCOS */
1549 
1550 /* Define to 1 if you have the `_sincosf' function. */
1551 /* #undef _GLIBCXX_HAVE__SINCOSF */
1552 
1553 /* Define to 1 if you have the `_sincosl' function. */
1554 /* #undef _GLIBCXX_HAVE__SINCOSL */
1555 
1556 /* Define to 1 if you have the `_sinf' function. */
1557 /* #undef _GLIBCXX_HAVE__SINF */
1558 
1559 /* Define to 1 if you have the `_sinhf' function. */
1560 /* #undef _GLIBCXX_HAVE__SINHF */
1561 
1562 /* Define to 1 if you have the `_sinhl' function. */
1563 /* #undef _GLIBCXX_HAVE__SINHL */
1564 
1565 /* Define to 1 if you have the `_sinl' function. */
1566 /* #undef _GLIBCXX_HAVE__SINL */
1567 
1568 /* Define to 1 if you have the `_sqrtf' function. */
1569 /* #undef _GLIBCXX_HAVE__SQRTF */
1570 
1571 /* Define to 1 if you have the `_sqrtl' function. */
1572 /* #undef _GLIBCXX_HAVE__SQRTL */
1573 
1574 /* Define to 1 if you have the `_tanf' function. */
1575 /* #undef _GLIBCXX_HAVE__TANF */
1576 
1577 /* Define to 1 if you have the `_tanhf' function. */
1578 /* #undef _GLIBCXX_HAVE__TANHF */
1579 
1580 /* Define to 1 if you have the `_tanhl' function. */
1581 /* #undef _GLIBCXX_HAVE__TANHL */
1582 
1583 /* Define to 1 if you have the `_tanl' function. */
1584 /* #undef _GLIBCXX_HAVE__TANL */
1585 
1586 /* Define to 1 if you have the `_wfopen' function. */
1587 /* #undef _GLIBCXX_HAVE__WFOPEN */
1588 
1589 /* Define to 1 if you have the `__cxa_thread_atexit' function. */
1590 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT 1
1591 
1592 /* Define to 1 if you have the `__cxa_thread_atexit_impl' function. */
1593 #define _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL 1
1594 
1595 /* Define as const if the declaration of iconv() needs const. */
1596 #define _GLIBCXX_ICONV_CONST
1597 
1598 /* Define to the sub-directory in which libtool stores uninstalled libraries.
1599    */
1600 #define _GLIBCXX_LT_OBJDIR ".libs/"
1601 
1602 /* Name of package */
1603 /* #undef _GLIBCXX_PACKAGE */
1604 
1605 /* Define to the address where bug reports for this package should be sent. */
1606 #define _GLIBCXX_PACKAGE_BUGREPORT ""
1607 
1608 /* Define to the full name of this package. */
1609 #define _GLIBCXX_PACKAGE_NAME "package-unused"
1610 
1611 /* Define to the full name and version of this package. */
1612 #define _GLIBCXX_PACKAGE_STRING "package-unused version-unused"
1613 
1614 /* Define to the one symbol short name of this package. */
1615 #define _GLIBCXX_PACKAGE_TARNAME "libstdc++"
1616 
1617 /* Define to the home page for this package. */
1618 #define _GLIBCXX_PACKAGE_URL ""
1619 
1620 /* Define to the version of this package. */
1621 #define _GLIBCXX_PACKAGE__GLIBCXX_VERSION "version-unused"
1622 
1623 /* The size of `char', as computed by sizeof. */
1624 /* #undef SIZEOF_CHAR */
1625 
1626 /* The size of `int', as computed by sizeof. */
1627 /* #undef SIZEOF_INT */
1628 
1629 /* The size of `long', as computed by sizeof. */
1630 /* #undef SIZEOF_LONG */
1631 
1632 /* The size of `short', as computed by sizeof. */
1633 /* #undef SIZEOF_SHORT */
1634 
1635 /* The size of `void *', as computed by sizeof. */
1636 /* #undef SIZEOF_VOID_P */
1637 
1638 /* Define to 1 if you have the ANSI C header files. */
1639 #define _GLIBCXX_STDC_HEADERS 1
1640 
1641 /* Version number of package */
1642 /* #undef _GLIBCXX_VERSION */
1643 
1644 /* Enable large inode numbers on Mac OS X 10.5.  */
1645 #ifndef _GLIBCXX_DARWIN_USE_64_BIT_INODE
1646 # define _GLIBCXX_DARWIN_USE_64_BIT_INODE 1
1647 #endif
1648 
1649 /* Number of bits in a file offset, on hosts where this is settable. */
1650 /* #undef _GLIBCXX_FILE_OFFSET_BITS */
1651 
1652 /* Define if C99 functions in <complex.h> should be used in <complex> for
1653    C++11. Using compiler builtins for these functions requires corresponding
1654    C99 library functions to be present. */
1655 #define _GLIBCXX11_USE_C99_COMPLEX 1
1656 
1657 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1658    in namespace std for C++11. */
1659 #define _GLIBCXX11_USE_C99_MATH 1
1660 
1661 /* Define if C99 functions or macros in <stdio.h> should be imported in
1662    <cstdio> in namespace std for C++11. */
1663 #define _GLIBCXX11_USE_C99_STDIO 1
1664 
1665 /* Define if C99 functions or macros in <stdlib.h> should be imported in
1666    <cstdlib> in namespace std for C++11. */
1667 #define _GLIBCXX11_USE_C99_STDLIB 1
1668 
1669 /* Define if C99 functions or macros in <wchar.h> should be imported in
1670    <cwchar> in namespace std for C++11. */
1671 #define _GLIBCXX11_USE_C99_WCHAR 1
1672 
1673 /* Define if C99 functions in <complex.h> should be used in <complex> for
1674    C++98. Using compiler builtins for these functions requires corresponding
1675    C99 library functions to be present. */
1676 #define _GLIBCXX98_USE_C99_COMPLEX 1
1677 
1678 /* Define if C99 functions or macros in <math.h> should be imported in <cmath>
1679    in namespace std for C++98. */
1680 #define _GLIBCXX98_USE_C99_MATH 1
1681 
1682 /* Define if C99 functions or macros in <stdio.h> should be imported in
1683    <cstdio> in namespace std for C++98. */
1684 #define _GLIBCXX98_USE_C99_STDIO 1
1685 
1686 /* Define if C99 functions or macros in <stdlib.h> should be imported in
1687    <cstdlib> in namespace std for C++98. */
1688 #define _GLIBCXX98_USE_C99_STDLIB 1
1689 
1690 /* Define if C99 functions or macros in <wchar.h> should be imported in
1691    <cwchar> in namespace std for C++98. */
1692 #define _GLIBCXX98_USE_C99_WCHAR 1
1693 
1694 /* Define if the compiler supports C++11 atomics. */
1695 /* #undef _GLIBCXX_ATOMIC_BUILTINS */
1696 
1697 /* Define to use concept checking code from the boost libraries. */
1698 /* #undef _GLIBCXX_CONCEPT_CHECKS */
1699 
1700 /* Define to 1 if a fully dynamic basic_string is wanted, 0 to disable,
1701    undefined for platform defaults */
1702 #define _GLIBCXX_FULLY_DYNAMIC_STRING 0
1703 
1704 /* Define if gthreads library is available. */
1705 #define _GLIBCXX_HAS_GTHREADS 1
1706 
1707 /* Define to 1 if a full hosted library is built, or 0 if freestanding. */
1708 #define _GLIBCXX_HOSTED 1
1709 
1710 /* Define if compatibility should be provided for alternative 128-bit long
1711    double formats. */
1712 
1713 /* Define if compatibility should be provided for -mlong-double-64. */
1714 
1715 /* Define to the letter to which size_t is mangled. */
1716 #define _GLIBCXX_MANGLE_SIZE_T m
1717 
1718 /* Define if C99 llrint and llround functions are missing from <math.h>. */
1719 /* #undef _GLIBCXX_NO_C99_ROUNDING_FUNCS */
1720 
1721 /* Defined if no way to sleep is available. */
1722 /* #undef _GLIBCXX_NO_SLEEP */
1723 
1724 /* Define if ptrdiff_t is int. */
1725 /* #undef _GLIBCXX_PTRDIFF_T_IS_INT */
1726 
1727 /* Define if using setrlimit to set resource limits during "make check" */
1728 #define _GLIBCXX_RES_LIMITS 1
1729 
1730 /* Define if size_t is unsigned int. */
1731 /* #undef _GLIBCXX_SIZE_T_IS_UINT */
1732 
1733 /* Define to the value of the EOF integer constant. */
1734 #define _GLIBCXX_STDIO_EOF -1
1735 
1736 /* Define to the value of the SEEK_CUR integer constant. */
1737 #define _GLIBCXX_STDIO_SEEK_CUR 1
1738 
1739 /* Define to the value of the SEEK_END integer constant. */
1740 #define _GLIBCXX_STDIO_SEEK_END 2
1741 
1742 /* Define to use symbol versioning in the shared library. */
1743 #define _GLIBCXX_SYMVER 1
1744 
1745 /* Define to use darwin versioning in the shared library. */
1746 /* #undef _GLIBCXX_SYMVER_DARWIN */
1747 
1748 /* Define to use GNU versioning in the shared library. */
1749 #define _GLIBCXX_SYMVER_GNU 1
1750 
1751 /* Define to use GNU namespace versioning in the shared library. */
1752 /* #undef _GLIBCXX_SYMVER_GNU_NAMESPACE */
1753 
1754 /* Define to use Sun versioning in the shared library. */
1755 /* #undef _GLIBCXX_SYMVER_SUN */
1756 
1757 /* Define if C11 functions in <uchar.h> should be imported into namespace std
1758    in <cuchar>. */
1759 /* #undef _GLIBCXX_USE_C11_UCHAR_CXX11 */
1760 
1761 /* Define if C99 functions or macros from <wchar.h>, <math.h>, <complex.h>,
1762    <stdio.h>, and <stdlib.h> can be used or exposed. */
1763 #define _GLIBCXX_USE_C99 1
1764 
1765 /* Define if C99 functions in <complex.h> should be used in <tr1/complex>.
1766    Using compiler builtins for these functions requires corresponding C99
1767    library functions to be present. */
1768 #define _GLIBCXX_USE_C99_COMPLEX_TR1 1
1769 
1770 /* Define if C99 functions in <ctype.h> should be imported in <tr1/cctype> in
1771    namespace std::tr1. */
1772 #define _GLIBCXX_USE_C99_CTYPE_TR1 1
1773 
1774 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in
1775    namespace std::tr1. */
1776 /* #undef _GLIBCXX_USE_C99_FENV_TR1 */
1777 
1778 /* Define if C99 functions in <inttypes.h> should be imported in
1779    <tr1/cinttypes> in namespace std::tr1. */
1780 #define _GLIBCXX_USE_C99_INTTYPES_TR1 1
1781 
1782 /* Define if wchar_t C99 functions in <inttypes.h> should be imported in
1783    <tr1/cinttypes> in namespace std::tr1. */
1784 #define _GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1 1
1785 
1786 /* Define if C99 functions or macros in <math.h> should be imported in
1787    <tr1/cmath> in namespace std::tr1. */
1788 #define _GLIBCXX_USE_C99_MATH_TR1 1
1789 
1790 /* Define if C99 types in <stdint.h> should be imported in <tr1/cstdint> in
1791    namespace std::tr1. */
1792 #define _GLIBCXX_USE_C99_STDINT_TR1 1
1793 
1794 /* Define if usable chdir is available in <unistd.h>. */
1795 #define _GLIBCXX_USE_CHDIR 1
1796 
1797 /* Define if usable chmod is available in <sys/stat.h>. */
1798 #define _GLIBCXX_USE_CHMOD 1
1799 
1800 /* Defined if clock_gettime syscall has monotonic and realtime clock support.
1801    */
1802 /* #undef _GLIBCXX_USE_CLOCK_GETTIME_SYSCALL */
1803 
1804 /* Defined if clock_gettime has monotonic clock support. */
1805 #define _GLIBCXX_USE_CLOCK_MONOTONIC 1
1806 
1807 /* Defined if clock_gettime has realtime clock support. */
1808 #define _GLIBCXX_USE_CLOCK_REALTIME 1
1809 
1810 /* Define if ISO/IEC TR 24733 decimal floating point types are supported on
1811    this host. */
1812 /* #undef _GLIBCXX_USE_DECIMAL_FLOAT */
1813 
1814 /* Define if /dev/random and /dev/urandom are available for
1815    std::random_device. */
1816 #define _GLIBCXX_USE_DEV_RANDOM 1
1817 
1818 /* Define if fchmod is available in <sys/stat.h>. */
1819 #define _GLIBCXX_USE_FCHMOD 1
1820 
1821 /* Define if fchmodat is available in <sys/stat.h>. */
1822 #define _GLIBCXX_USE_FCHMODAT 1
1823 
1824 /* Define if usable getcwd is available in <unistd.h>. */
1825 #define _GLIBCXX_USE_GETCWD 1
1826 
1827 /* Defined if gettimeofday is available. */
1828 #define _GLIBCXX_USE_GETTIMEOFDAY 1
1829 
1830 /* Define if get_nprocs is available in <sys/sysinfo.h>. */
1831 /* #undef _GLIBCXX_USE_GET_NPROCS */
1832 
1833 /* Define if LFS support is available. */
1834 /* #undef _GLIBCXX_USE_LFS */
1835 
1836 /* Define if code specialized for long long should be used. */
1837 #define _GLIBCXX_USE_LONG_LONG 1
1838 
1839 /* Define if lstat is available in <sys/stat.h>. */
1840 #define _GLIBCXX_USE_LSTAT 1
1841 
1842 /* Define if usable mkdir is available in <sys/stat.h>. */
1843 #define _GLIBCXX_USE_MKDIR 1
1844 
1845 /* Defined if nanosleep is available. */
1846 #define _GLIBCXX_USE_NANOSLEEP 1
1847 
1848 /* Define if NLS translations are to be used. */
1849 /* #undef _GLIBCXX_USE_NLS */
1850 
1851 /* Define if pthreads_num_processors_np is available in <pthread.h>. */
1852 /* #undef _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP */
1853 
1854 /* Define if pthread_cond_clockwait is available in <pthread.h>. */
1855 /* #undef _GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT */
1856 
1857 /* Define if pthread_mutex_clocklock is available in <pthread.h>. */
1858 /* #undef _GLIBCXX_USE_PTHREAD_MUTEX_CLOCKLOCK */
1859 
1860 /* Define if pthread_rwlock_clockrdlock and pthread_rwlock_clockwrlock are
1861    available in <pthread.h>. */
1862 /* #undef _GLIBCXX_USE_PTHREAD_RWLOCK_CLOCKLOCK */
1863 
1864 /* Define if POSIX read/write locks are available in <gthr.h>. */
1865 #define _GLIBCXX_USE_PTHREAD_RWLOCK_T 1
1866 
1867 /* Define if /dev/random and /dev/urandom are available for the random_device
1868    of TR1 (Chapter 5.1). */
1869 #define _GLIBCXX_USE_RANDOM_TR1 1
1870 
1871 /* Define if usable realpath is available in <stdlib.h>. */
1872 /* #undef _GLIBCXX_USE_REALPATH */
1873 
1874 /* Defined if sched_yield is available. */
1875 #define _GLIBCXX_USE_SCHED_YIELD 1
1876 
1877 /* Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>. */
1878 #define _GLIBCXX_USE_SC_NPROCESSORS_ONLN 1
1879 
1880 /* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
1881 /* #undef _GLIBCXX_USE_SC_NPROC_ONLN */
1882 
1883 /* Define if sendfile is available in <sys/sendfile.h>. */
1884 /* #undef _GLIBCXX_USE_SENDFILE */
1885 
1886 /* Define to restrict std::__basic_file<> to stdio APIs. */
1887 /* #undef _GLIBCXX_USE_STDIO_PURE */
1888 
1889 /* Define if struct stat has timespec members. */
1890 #define _GLIBCXX_USE_ST_MTIM 1
1891 
1892 /* Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>. */
1893 #define _GLIBCXX_USE_SYSCTL_HW_NCPU 1
1894 
1895 /* Define if obsolescent tmpnam is available in <stdio.h>. */
1896 #define _GLIBCXX_USE_TMPNAM 1
1897 
1898 /* Define if c8rtomb and mbrtoc8 functions in <uchar.h> should be imported
1899    into namespace std in <cuchar> for C++20. */
1900 /* #undef _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_CXX20 */
1901 
1902 /* Define if c8rtomb and mbrtoc8 functions in <uchar.h> should be imported
1903    into namespace std in <cuchar> for -fchar8_t. */
1904 /* #undef _GLIBCXX_USE_UCHAR_C8RTOMB_MBRTOC8_FCHAR8_T */
1905 
1906 /* Define if utime is available in <utime.h>. */
1907 #define _GLIBCXX_USE_UTIME 1
1908 
1909 /* Define if utimensat and UTIME_OMIT are available in <sys/stat.h> and
1910    AT_FDCWD in <fcntl.h>. */
1911 #define _GLIBCXX_USE_UTIMENSAT 1
1912 
1913 /* Define if code specialized for wchar_t should be used. */
1914 #define _GLIBCXX_USE_WCHAR_T 1
1915 
1916 /* Define to 1 if a verbose library is built, or 0 otherwise. */
1917 #define _GLIBCXX_VERBOSE 1
1918 
1919 /* Defined if as can handle rdrand. */
1920 /* #undef _GLIBCXX_X86_RDRAND */
1921 
1922 /* Defined if as can handle rdseed. */
1923 /* #undef _GLIBCXX_X86_RDSEED */
1924 
1925 /* Define to 1 if mutex_timedlock is available. */
1926 #define _GTHREAD_USE_MUTEX_TIMEDLOCK 0
1927 
1928 /* Define for large files, on AIX-style hosts. */
1929 /* #undef _GLIBCXX_LARGE_FILES */
1930 
1931 /* Define if all C++11 floating point overloads are available in <math.h>.  */
1932 #if __cplusplus >= 201103L
1933 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_FP */
1934 #endif
1935 
1936 /* Define if all C++11 integral type overloads are available in <math.h>.  */
1937 #if __cplusplus >= 201103L
1938 /* #undef __CORRECT_ISO_CPP11_MATH_H_PROTO_INT */
1939 #endif
1940 
1941 #if defined (_GLIBCXX_HAVE__ACOSF) && ! defined (_GLIBCXX_HAVE_ACOSF)
1942 # define _GLIBCXX_HAVE_ACOSF 1
1943 # define acosf _acosf
1944 #endif
1945 
1946 #if defined (_GLIBCXX_HAVE__ACOSL) && ! defined (_GLIBCXX_HAVE_ACOSL)
1947 # define _GLIBCXX_HAVE_ACOSL 1
1948 # define acosl _acosl
1949 #endif
1950 
1951 #if defined (_GLIBCXX_HAVE__ASINF) && ! defined (_GLIBCXX_HAVE_ASINF)
1952 # define _GLIBCXX_HAVE_ASINF 1
1953 # define asinf _asinf
1954 #endif
1955 
1956 #if defined (_GLIBCXX_HAVE__ASINL) && ! defined (_GLIBCXX_HAVE_ASINL)
1957 # define _GLIBCXX_HAVE_ASINL 1
1958 # define asinl _asinl
1959 #endif
1960 
1961 #if defined (_GLIBCXX_HAVE__ATAN2F) && ! defined (_GLIBCXX_HAVE_ATAN2F)
1962 # define _GLIBCXX_HAVE_ATAN2F 1
1963 # define atan2f _atan2f
1964 #endif
1965 
1966 #if defined (_GLIBCXX_HAVE__ATAN2L) && ! defined (_GLIBCXX_HAVE_ATAN2L)
1967 # define _GLIBCXX_HAVE_ATAN2L 1
1968 # define atan2l _atan2l
1969 #endif
1970 
1971 #if defined (_GLIBCXX_HAVE__ATANF) && ! defined (_GLIBCXX_HAVE_ATANF)
1972 # define _GLIBCXX_HAVE_ATANF 1
1973 # define atanf _atanf
1974 #endif
1975 
1976 #if defined (_GLIBCXX_HAVE__ATANL) && ! defined (_GLIBCXX_HAVE_ATANL)
1977 # define _GLIBCXX_HAVE_ATANL 1
1978 # define atanl _atanl
1979 #endif
1980 
1981 #if defined (_GLIBCXX_HAVE__CEILF) && ! defined (_GLIBCXX_HAVE_CEILF)
1982 # define _GLIBCXX_HAVE_CEILF 1
1983 # define ceilf _ceilf
1984 #endif
1985 
1986 #if defined (_GLIBCXX_HAVE__CEILL) && ! defined (_GLIBCXX_HAVE_CEILL)
1987 # define _GLIBCXX_HAVE_CEILL 1
1988 # define ceill _ceill
1989 #endif
1990 
1991 #if defined (_GLIBCXX_HAVE__COSF) && ! defined (_GLIBCXX_HAVE_COSF)
1992 # define _GLIBCXX_HAVE_COSF 1
1993 # define cosf _cosf
1994 #endif
1995 
1996 #if defined (_GLIBCXX_HAVE__COSHF) && ! defined (_GLIBCXX_HAVE_COSHF)
1997 # define _GLIBCXX_HAVE_COSHF 1
1998 # define coshf _coshf
1999 #endif
2000 
2001 #if defined (_GLIBCXX_HAVE__COSHL) && ! defined (_GLIBCXX_HAVE_COSHL)
2002 # define _GLIBCXX_HAVE_COSHL 1
2003 # define coshl _coshl
2004 #endif
2005 
2006 #if defined (_GLIBCXX_HAVE__COSL) && ! defined (_GLIBCXX_HAVE_COSL)
2007 # define _GLIBCXX_HAVE_COSL 1
2008 # define cosl _cosl
2009 #endif
2010 
2011 #if defined (_GLIBCXX_HAVE__EXPF) && ! defined (_GLIBCXX_HAVE_EXPF)
2012 # define _GLIBCXX_HAVE_EXPF 1
2013 # define expf _expf
2014 #endif
2015 
2016 #if defined (_GLIBCXX_HAVE__EXPL) && ! defined (_GLIBCXX_HAVE_EXPL)
2017 # define _GLIBCXX_HAVE_EXPL 1
2018 # define expl _expl
2019 #endif
2020 
2021 #if defined (_GLIBCXX_HAVE__FABSF) && ! defined (_GLIBCXX_HAVE_FABSF)
2022 # define _GLIBCXX_HAVE_FABSF 1
2023 # define fabsf _fabsf
2024 #endif
2025 
2026 #if defined (_GLIBCXX_HAVE__FABSL) && ! defined (_GLIBCXX_HAVE_FABSL)
2027 # define _GLIBCXX_HAVE_FABSL 1
2028 # define fabsl _fabsl
2029 #endif
2030 
2031 #if defined (_GLIBCXX_HAVE__FINITE) && ! defined (_GLIBCXX_HAVE_FINITE)
2032 # define _GLIBCXX_HAVE_FINITE 1
2033 # define finite _finite
2034 #endif
2035 
2036 #if defined (_GLIBCXX_HAVE__FINITEF) && ! defined (_GLIBCXX_HAVE_FINITEF)
2037 # define _GLIBCXX_HAVE_FINITEF 1
2038 # define finitef _finitef
2039 #endif
2040 
2041 #if defined (_GLIBCXX_HAVE__FINITEL) && ! defined (_GLIBCXX_HAVE_FINITEL)
2042 # define _GLIBCXX_HAVE_FINITEL 1
2043 # define finitel _finitel
2044 #endif
2045 
2046 #if defined (_GLIBCXX_HAVE__FLOORF) && ! defined (_GLIBCXX_HAVE_FLOORF)
2047 # define _GLIBCXX_HAVE_FLOORF 1
2048 # define floorf _floorf
2049 #endif
2050 
2051 #if defined (_GLIBCXX_HAVE__FLOORL) && ! defined (_GLIBCXX_HAVE_FLOORL)
2052 # define _GLIBCXX_HAVE_FLOORL 1
2053 # define floorl _floorl
2054 #endif
2055 
2056 #if defined (_GLIBCXX_HAVE__FMODF) && ! defined (_GLIBCXX_HAVE_FMODF)
2057 # define _GLIBCXX_HAVE_FMODF 1
2058 # define fmodf _fmodf
2059 #endif
2060 
2061 #if defined (_GLIBCXX_HAVE__FMODL) && ! defined (_GLIBCXX_HAVE_FMODL)
2062 # define _GLIBCXX_HAVE_FMODL 1
2063 # define fmodl _fmodl
2064 #endif
2065 
2066 #if defined (_GLIBCXX_HAVE__FPCLASS) && ! defined (_GLIBCXX_HAVE_FPCLASS)
2067 # define _GLIBCXX_HAVE_FPCLASS 1
2068 # define fpclass _fpclass
2069 #endif
2070 
2071 #if defined (_GLIBCXX_HAVE__FREXPF) && ! defined (_GLIBCXX_HAVE_FREXPF)
2072 # define _GLIBCXX_HAVE_FREXPF 1
2073 # define frexpf _frexpf
2074 #endif
2075 
2076 #if defined (_GLIBCXX_HAVE__FREXPL) && ! defined (_GLIBCXX_HAVE_FREXPL)
2077 # define _GLIBCXX_HAVE_FREXPL 1
2078 # define frexpl _frexpl
2079 #endif
2080 
2081 #if defined (_GLIBCXX_HAVE__HYPOT) && ! defined (_GLIBCXX_HAVE_HYPOT)
2082 # define _GLIBCXX_HAVE_HYPOT 1
2083 # define hypot _hypot
2084 #endif
2085 
2086 #if defined (_GLIBCXX_HAVE__HYPOTF) && ! defined (_GLIBCXX_HAVE_HYPOTF)
2087 # define _GLIBCXX_HAVE_HYPOTF 1
2088 # define hypotf _hypotf
2089 #endif
2090 
2091 #if defined (_GLIBCXX_HAVE__HYPOTL) && ! defined (_GLIBCXX_HAVE_HYPOTL)
2092 # define _GLIBCXX_HAVE_HYPOTL 1
2093 # define hypotl _hypotl
2094 #endif
2095 
2096 #if defined (_GLIBCXX_HAVE__ISINF) && ! defined (_GLIBCXX_HAVE_ISINF)
2097 # define _GLIBCXX_HAVE_ISINF 1
2098 # define isinf _isinf
2099 #endif
2100 
2101 #if defined (_GLIBCXX_HAVE__ISINFF) && ! defined (_GLIBCXX_HAVE_ISINFF)
2102 # define _GLIBCXX_HAVE_ISINFF 1
2103 # define isinff _isinff
2104 #endif
2105 
2106 #if defined (_GLIBCXX_HAVE__ISINFL) && ! defined (_GLIBCXX_HAVE_ISINFL)
2107 # define _GLIBCXX_HAVE_ISINFL 1
2108 # define isinfl _isinfl
2109 #endif
2110 
2111 #if defined (_GLIBCXX_HAVE__ISNAN) && ! defined (_GLIBCXX_HAVE_ISNAN)
2112 # define _GLIBCXX_HAVE_ISNAN 1
2113 # define isnan _isnan
2114 #endif
2115 
2116 #if defined (_GLIBCXX_HAVE__ISNANF) && ! defined (_GLIBCXX_HAVE_ISNANF)
2117 # define _GLIBCXX_HAVE_ISNANF 1
2118 # define isnanf _isnanf
2119 #endif
2120 
2121 #if defined (_GLIBCXX_HAVE__ISNANL) && ! defined (_GLIBCXX_HAVE_ISNANL)
2122 # define _GLIBCXX_HAVE_ISNANL 1
2123 # define isnanl _isnanl
2124 #endif
2125 
2126 #if defined (_GLIBCXX_HAVE__LDEXPF) && ! defined (_GLIBCXX_HAVE_LDEXPF)
2127 # define _GLIBCXX_HAVE_LDEXPF 1
2128 # define ldexpf _ldexpf
2129 #endif
2130 
2131 #if defined (_GLIBCXX_HAVE__LDEXPL) && ! defined (_GLIBCXX_HAVE_LDEXPL)
2132 # define _GLIBCXX_HAVE_LDEXPL 1
2133 # define ldexpl _ldexpl
2134 #endif
2135 
2136 #if defined (_GLIBCXX_HAVE__LOG10F) && ! defined (_GLIBCXX_HAVE_LOG10F)
2137 # define _GLIBCXX_HAVE_LOG10F 1
2138 # define log10f _log10f
2139 #endif
2140 
2141 #if defined (_GLIBCXX_HAVE__LOG10L) && ! defined (_GLIBCXX_HAVE_LOG10L)
2142 # define _GLIBCXX_HAVE_LOG10L 1
2143 # define log10l _log10l
2144 #endif
2145 
2146 #if defined (_GLIBCXX_HAVE__LOGF) && ! defined (_GLIBCXX_HAVE_LOGF)
2147 # define _GLIBCXX_HAVE_LOGF 1
2148 # define logf _logf
2149 #endif
2150 
2151 #if defined (_GLIBCXX_HAVE__LOGL) && ! defined (_GLIBCXX_HAVE_LOGL)
2152 # define _GLIBCXX_HAVE_LOGL 1
2153 # define logl _logl
2154 #endif
2155 
2156 #if defined (_GLIBCXX_HAVE__MODF) && ! defined (_GLIBCXX_HAVE_MODF)
2157 # define _GLIBCXX_HAVE_MODF 1
2158 # define modf _modf
2159 #endif
2160 
2161 #if defined (_GLIBCXX_HAVE__MODFF) && ! defined (_GLIBCXX_HAVE_MODFF)
2162 # define _GLIBCXX_HAVE_MODFF 1
2163 # define modff _modff
2164 #endif
2165 
2166 #if defined (_GLIBCXX_HAVE__MODFL) && ! defined (_GLIBCXX_HAVE_MODFL)
2167 # define _GLIBCXX_HAVE_MODFL 1
2168 # define modfl _modfl
2169 #endif
2170 
2171 #if defined (_GLIBCXX_HAVE__POWF) && ! defined (_GLIBCXX_HAVE_POWF)
2172 # define _GLIBCXX_HAVE_POWF 1
2173 # define powf _powf
2174 #endif
2175 
2176 #if defined (_GLIBCXX_HAVE__POWL) && ! defined (_GLIBCXX_HAVE_POWL)
2177 # define _GLIBCXX_HAVE_POWL 1
2178 # define powl _powl
2179 #endif
2180 
2181 #if defined (_GLIBCXX_HAVE__QFPCLASS) && ! defined (_GLIBCXX_HAVE_QFPCLASS)
2182 # define _GLIBCXX_HAVE_QFPCLASS 1
2183 # define qfpclass _qfpclass
2184 #endif
2185 
2186 #if defined (_GLIBCXX_HAVE__SINCOS) && ! defined (_GLIBCXX_HAVE_SINCOS)
2187 # define _GLIBCXX_HAVE_SINCOS 1
2188 # define sincos _sincos
2189 #endif
2190 
2191 #if defined (_GLIBCXX_HAVE__SINCOSF) && ! defined (_GLIBCXX_HAVE_SINCOSF)
2192 # define _GLIBCXX_HAVE_SINCOSF 1
2193 # define sincosf _sincosf
2194 #endif
2195 
2196 #if defined (_GLIBCXX_HAVE__SINCOSL) && ! defined (_GLIBCXX_HAVE_SINCOSL)
2197 # define _GLIBCXX_HAVE_SINCOSL 1
2198 # define sincosl _sincosl
2199 #endif
2200 
2201 #if defined (_GLIBCXX_HAVE__SINF) && ! defined (_GLIBCXX_HAVE_SINF)
2202 # define _GLIBCXX_HAVE_SINF 1
2203 # define sinf _sinf
2204 #endif
2205 
2206 #if defined (_GLIBCXX_HAVE__SINHF) && ! defined (_GLIBCXX_HAVE_SINHF)
2207 # define _GLIBCXX_HAVE_SINHF 1
2208 # define sinhf _sinhf
2209 #endif
2210 
2211 #if defined (_GLIBCXX_HAVE__SINHL) && ! defined (_GLIBCXX_HAVE_SINHL)
2212 # define _GLIBCXX_HAVE_SINHL 1
2213 # define sinhl _sinhl
2214 #endif
2215 
2216 #if defined (_GLIBCXX_HAVE__SINL) && ! defined (_GLIBCXX_HAVE_SINL)
2217 # define _GLIBCXX_HAVE_SINL 1
2218 # define sinl _sinl
2219 #endif
2220 
2221 #if defined (_GLIBCXX_HAVE__SQRTF) && ! defined (_GLIBCXX_HAVE_SQRTF)
2222 # define _GLIBCXX_HAVE_SQRTF 1
2223 # define sqrtf _sqrtf
2224 #endif
2225 
2226 #if defined (_GLIBCXX_HAVE__SQRTL) && ! defined (_GLIBCXX_HAVE_SQRTL)
2227 # define _GLIBCXX_HAVE_SQRTL 1
2228 # define sqrtl _sqrtl
2229 #endif
2230 
2231 #if defined (_GLIBCXX_HAVE__STRTOF) && ! defined (_GLIBCXX_HAVE_STRTOF)
2232 # define _GLIBCXX_HAVE_STRTOF 1
2233 # define strtof _strtof
2234 #endif
2235 
2236 #if defined (_GLIBCXX_HAVE__STRTOLD) && ! defined (_GLIBCXX_HAVE_STRTOLD)
2237 # define _GLIBCXX_HAVE_STRTOLD 1
2238 # define strtold _strtold
2239 #endif
2240 
2241 #if defined (_GLIBCXX_HAVE__TANF) && ! defined (_GLIBCXX_HAVE_TANF)
2242 # define _GLIBCXX_HAVE_TANF 1
2243 # define tanf _tanf
2244 #endif
2245 
2246 #if defined (_GLIBCXX_HAVE__TANHF) && ! defined (_GLIBCXX_HAVE_TANHF)
2247 # define _GLIBCXX_HAVE_TANHF 1
2248 # define tanhf _tanhf
2249 #endif
2250 
2251 #if defined (_GLIBCXX_HAVE__TANHL) && ! defined (_GLIBCXX_HAVE_TANHL)
2252 # define _GLIBCXX_HAVE_TANHL 1
2253 # define tanhl _tanhl
2254 #endif
2255 
2256 #if defined (_GLIBCXX_HAVE__TANL) && ! defined (_GLIBCXX_HAVE_TANL)
2257 # define _GLIBCXX_HAVE_TANL 1
2258 # define tanl _tanl
2259 #endif
2260 
2261 #endif // _GLIBCXX_CXX_CONFIG_H
2262