Blame bits/long-double.h

Packit Service 82fcde
/* Properties of long double type.
Packit Service 82fcde
   Copyright (C) 2016-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  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
/* This header is included by <sys/cdefs.h>.
Packit Service 82fcde
Packit Service 82fcde
   If long double is ABI-compatible with double, it should define
Packit Service 82fcde
   __NO_LONG_DOUBLE_MATH to 1; otherwise, it should leave
Packit Service 82fcde
   __NO_LONG_DOUBLE_MATH undefined.
Packit Service 82fcde
Packit Service 82fcde
   If this build of the GNU C Library supports both long double
Packit Service 82fcde
   ABI-compatible with double and some other long double format not
Packit Service 82fcde
   ABI-compatible with double, it should define
Packit Service 82fcde
   __LONG_DOUBLE_MATH_OPTIONAL to 1; otherwise, it should leave
Packit Service 82fcde
   __LONG_DOUBLE_MATH_OPTIONAL undefined.
Packit Service 82fcde
Packit Service 82fcde
   If __NO_LONG_DOUBLE_MATH is already defined, this header must not
Packit Service 82fcde
   define anything; this is needed to work with the definition of
Packit Service 82fcde
   __NO_LONG_DOUBLE_MATH in nldbl-compat.h.  */
Packit Service 82fcde
Packit Service 82fcde
/* In the default version of this header, long double is
Packit Service 82fcde
   ABI-compatible with double.  */
Packit Service 82fcde
#ifndef __NO_LONG_DOUBLE_MATH
Packit Service 82fcde
# define __NO_LONG_DOUBLE_MATH	1
Packit Service 82fcde
#endif