Blame include/stdc-predef.h

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