Blame lib/isnanl-nolibm.h

Packit 1ac44c
/* Test for NaN that does not need libm.
Packit 1ac44c
   Copyright (C) 2007-2018 Free Software Foundation, Inc.
Packit 1ac44c
Packit 1ac44c
   This program is free software: you can redistribute it and/or modify
Packit 1ac44c
   it under the terms of the GNU General Public License as published by
Packit 1ac44c
   the Free Software Foundation; either version 3 of the License, or
Packit 1ac44c
   (at your option) any later version.
Packit 1ac44c
Packit 1ac44c
   This program is distributed in the hope that it will be useful,
Packit 1ac44c
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 1ac44c
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 1ac44c
   GNU General Public License for more details.
Packit 1ac44c
Packit 1ac44c
   You should have received a copy of the GNU General Public License
Packit 1ac44c
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit 1ac44c
Packit 1ac44c
#if HAVE_ISNANL_IN_LIBC
Packit 1ac44c
/* Get declaration of isnan macro or (older) isnanl function.  */
Packit 1ac44c
# include <math.h>
Packit 1ac44c
# if __GNUC__ >= 4
Packit 1ac44c
   /* GCC 4.0 and newer provides three built-ins for isnan.  */
Packit 1ac44c
#  undef isnanl
Packit 1ac44c
#  define isnanl(x) __builtin_isnanl ((long double)(x))
Packit 1ac44c
# elif defined isnan
Packit 1ac44c
#  undef isnanl
Packit 1ac44c
#  define isnanl(x) isnan ((long double)(x))
Packit 1ac44c
# endif
Packit 1ac44c
#else
Packit 1ac44c
/* Test whether X is a NaN.  */
Packit 1ac44c
# undef isnanl
Packit 1ac44c
# define isnanl rpl_isnanl
Packit 1ac44c
extern int isnanl (long double x);
Packit 1ac44c
#endif