diff options
Diffstat (limited to 'Build/source/libs/mpfr/mpfr-src/src/fits_uintmax.c')
-rw-r--r-- | Build/source/libs/mpfr/mpfr-src/src/fits_uintmax.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Build/source/libs/mpfr/mpfr-src/src/fits_uintmax.c b/Build/source/libs/mpfr/mpfr-src/src/fits_uintmax.c index 56935e94364..e100be19052 100644 --- a/Build/source/libs/mpfr/mpfr-src/src/fits_uintmax.c +++ b/Build/source/libs/mpfr/mpfr-src/src/fits_uintmax.c @@ -1,6 +1,6 @@ /* mpfr_fits_uintmax_p -- test whether an mpfr fits an uintmax_t. -Copyright 2004, 2006-2019 Free Software Foundation, Inc. +Copyright 2004, 2006-2020 Free Software Foundation, Inc. Contributed by the AriC and Caramba projects, INRIA. This file is part of the GNU MPFR Library. @@ -20,11 +20,7 @@ along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -#include "mpfr-intmax.h" +#define MPFR_NEED_INTMAX_H #include "mpfr-impl.h" /* Note: though mpfr-impl.h is included in fits_u.h, we also include it @@ -37,7 +33,7 @@ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc., #ifdef _MPFR_H_HAVE_INTMAX_T #define FUNCTION mpfr_fits_uintmax_p -#define MAXIMUM MPFR_UINTMAX_MAX +#define MAXIMUM UINTMAX_MAX #define TYPE uintmax_t #include "fits_u.h" |