summaryrefslogtreecommitdiff
path: root/mpfr-impl.h
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-01-15 17:28:33 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2003-01-15 17:28:33 +0000
commit40f908316e363d96466fbc553dd2517440cc2b99 (patch)
tree8a378c845d541b479f6705c025d7074cdb5b8b41 /mpfr-impl.h
parentdd4d582ddc8b22e5f386022037f244173386d8e4 (diff)
downloadmpfr-40f908316e363d96466fbc553dd2517440cc2b99.tar.gz
removed spurious ; after MPFR_ESIZE
added prototype for mpn_exp git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2174 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-impl.h')
-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)