summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mpfr-impl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/mpfr-impl.h b/mpfr-impl.h
index 689ae4f85..7b3c8785b 100644
--- a/mpfr-impl.h
+++ b/mpfr-impl.h
@@ -145,7 +145,7 @@ typedef union ieee_double_extract Ieee_double_extract;
#define MPFR_SET_ZERO(x) \
(MPFR_MANT(x)[(MPFR_PREC(x)-1)/BITS_PER_MP_LIMB] = (mp_limb_t) 0)
#define MPFR_ESIZE(x) \
- ((MPFR_PREC((x)) - 1) / BITS_PER_MP_LIMB + 1);
+ ((MPFR_PREC((x)) - 1) / BITS_PER_MP_LIMB + 1)
#define MPFR_EVEN_INEX 2
/* When returning the ternary inexact value, ALWAYS use one of the
@@ -218,6 +218,7 @@ int mpfr_exp3 _PROTO ((mpfr_ptr, mpfr_srcptr, mp_rnd_t));
int mpfr_powerof2_raw _PROTO ((mpfr_srcptr));
void mpfr_setmax _PROTO ((mpfr_ptr, mp_exp_t));
void mpfr_setmin _PROTO ((mpfr_ptr, mp_exp_t));
+long mpn_exp _PROTO ((mp_limb_t *, mp_exp_t *, int, mp_exp_t, size_t));
#define mpfr_round_raw(yp, xp, xprec, neg, yprec, r, inexp) \
mpfr_round_raw_generic((yp), (xp), (xprec), (neg), (yprec), (r), (inexp), 0)