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