Blame include/stdc-predef.h

Packit 6c4009
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#ifndef	_STDC_PREDEF_H
Packit 6c4009
#define	_STDC_PREDEF_H	1
Packit 6c4009
Packit 6c4009
/* This header is separate from features.h so that the compiler can
Packit 6c4009
   include it implicitly at the start of every compilation.  It must
Packit 6c4009
   not itself include <features.h> or any other header that includes
Packit 6c4009
   <features.h> because the implicit include comes before any feature
Packit 6c4009
   test macros that may be defined in a source file before it first
Packit 6c4009
   explicitly includes a system header.  GCC knows the name of this
Packit 6c4009
   header in order to preinclude it.  */
Packit 6c4009
Packit 6c4009
/* glibc's intent is to support the IEC 559 math functionality, real
Packit 6c4009
   and complex.  If the GCC (4.9 and later) predefined macros
Packit 6c4009
   specifying compiler intent are available, use them to determine
Packit 6c4009
   whether the overall intent is to support these features; otherwise,
Packit 6c4009
   presume an older compiler has intent to support these features and
Packit 6c4009
   define these macros by default.  */
Packit 6c4009
Packit 6c4009
#ifdef __GCC_IEC_559
Packit 6c4009
# if __GCC_IEC_559 > 0
Packit 6c4009
#  define __STDC_IEC_559__		1
Packit 6c4009
# endif
Packit 6c4009
#else
Packit 6c4009
# define __STDC_IEC_559__		1
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#ifdef __GCC_IEC_559_COMPLEX
Packit 6c4009
# if __GCC_IEC_559_COMPLEX > 0
Packit 6c4009
#  define __STDC_IEC_559_COMPLEX__	1
Packit 6c4009
# endif
Packit 6c4009
#else
Packit 6c4009
# define __STDC_IEC_559_COMPLEX__	1
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* wchar_t uses Unicode 10.0.0.  Version 10.0 of the Unicode Standard is
Packit 6c4009
   synchronized with ISO/IEC 10646:2017, fifth edition, plus
Packit 6c4009
   the following additions from Amendment 1 to the fifth edition:
Packit 6c4009
   - 56 emoji characters
Packit 6c4009
   - 285 hentaigana
Packit 6c4009
   - 3 additional Zanabazar Square characters */
Packit 6c4009
#define __STDC_ISO_10646__		201706L
Packit 6c4009
Packit 6c4009
#endif