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