summaryrefslogtreecommitdiff
path: root/ui_div.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2000-12-15 16:45:05 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2000-12-15 16:45:05 +0000
commita6657aab07f494f3a2796346c34d7b3c04218731 (patch)
treebedf7c14a4cfe890272935eddd07713d3ef992c3 /ui_div.c
parent8f93e232b461adb585ff7cc96c46a018afdcb378 (diff)
downloadmpfr-a6657aab07f494f3a2796346c34d7b3c04218731.tar.gz
_mp_d -> MPFR_MANT
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@880 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'ui_div.c')
-rw-r--r--ui_div.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui_div.c b/ui_div.c
index d97d59938..f60ad09d7 100644
--- a/ui_div.c
+++ b/ui_div.c
@@ -25,7 +25,8 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
#include "longlong.h"
-#define MON_INIT(xp, x, p, s) xp = (mp_ptr) TMP_ALLOC(s*BYTES_PER_MP_LIMB); x -> _mp_prec = p; x -> _mp_d = xp; x -> _mp_size = s;
+#define MON_INIT(xp, x, p, s) xp = (mp_ptr) TMP_ALLOC(s*BYTES_PER_MP_LIMB); \
+ MPFR_PREC(x) = p; MPFR_MANT(x) = xp; x -> _mp_size = s;
void
#if __STDC__