summaryrefslogtreecommitdiff
path: root/mpfr-impl.h
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-20 14:09:55 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-20 14:09:55 +0000
commit3c150b3b7699b4903cf307e1ab7e46d4d0fe6b73 (patch)
treebe9913a421db98944dd2807a6b9faf68cf8cd6ae /mpfr-impl.h
parent874f82ddc9de2c4637c5dae1d788c3b8a64a1fa9 (diff)
downloadmpfr-3c150b3b7699b4903cf307e1ab7e46d4d0fe6b73.tar.gz
mpfr_round rewritten.
mpfr_round_raw_generic: NULL changed to 0 as not necessarily defined. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1566 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-impl.h')
-rw-r--r--mpfr-impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpfr-impl.h b/mpfr-impl.h
index 634ec0909..e577609d8 100644
--- a/mpfr-impl.h
+++ b/mpfr-impl.h
@@ -162,7 +162,7 @@ unsigned long _mpfr_cuberoot _PROTO ((unsigned long));
mpfr_round_raw_generic((yp), (xp), (xprec), (neg), (yprec), (r), (inexp), 0)
#define mpfr_round_raw2(xp, xn, neg, r, prec) \
- mpfr_round_raw_generic(NULL, (xp), (xn) * BITS_PER_MP_LIMB, (neg), \
+ mpfr_round_raw_generic(0, (xp), (xn) * BITS_PER_MP_LIMB, (neg), \
(prec), (r), 0, 1);
#if defined (__cplusplus)