summaryrefslogtreecommitdiff
path: root/ui_div.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2000-10-26 11:59:59 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2000-10-26 11:59:59 +0000
commitda4b19c01ec0e27d42071d294e29fc56e1a1b16a (patch)
tree393496f9c6cc54d9bcde0fc0d77691fdcfdf255a /ui_div.c
parent33336e9a85f1ae242191e1b2286cded95f11362b (diff)
downloadmpfr-da4b19c01ec0e27d42071d294e29fc56e1a1b16a.tar.gz
protected all macros: xxx -> MPFR_xxx
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@786 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'ui_div.c')
-rw-r--r--ui_div.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui_div.c b/ui_div.c
index 11c8e0ce1..ae4dbff3e 100644
--- a/ui_div.c
+++ b/ui_div.c
@@ -47,11 +47,11 @@ mpfr_ui_div(y, u, x, rnd_mode)
MON_INIT(up, uu, BITS_PER_MP_LIMB, 1);
count_leading_zeros(cnt, (mp_limb_t) u);
*up = (mp_limb_t) u << cnt;
- EXP(uu) = BITS_PER_MP_LIMB-cnt;
+ MPFR_EXP(uu) = BITS_PER_MP_LIMB-cnt;
mpfr_div(y, uu, x, rnd_mode);
TMP_FREE(marker);
}
- else SET_ZERO(y); /* if u=0, then set y to 0 */
+ else MPFR_SET_ZERO(y); /* if u=0, then set y to 0 */
}