diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2003-10-06 16:11:15 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2003-10-06 16:11:15 +0000 |
commit | 98bde081af760d0e356a968f352b7c3079774925 (patch) | |
tree | c257eeee0aa7201688c8dfd0bfc1eafbeefe67f7 | |
parent | 1bf291d11c8389ebdb657a645ff8da5758a6eee6 (diff) | |
download | mpfr-98bde081af760d0e356a968f352b7c3079774925.tar.gz |
fixed comment of mpfr_round_raw_generic
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2481 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r-- | round_prec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/round_prec.c b/round_prec.c index e569a9df9..6440d53fd 100644 --- a/round_prec.c +++ b/round_prec.c @@ -33,10 +33,10 @@ MA 02111-1307, USA. */ * If flag = 0, puts in y the value of xp (with precision xprec and * sign 1 if negative=0, -1 otherwise) rounded to precision yprec and * direction rnd_mode. Supposes x is not zero nor NaN nor +/- Infinity - * (i.e. *xp != 0). If inexp != NULL, computes the inexact flag of the - * rounding. + * (i.e. *xp != 0). * - * In case of even rounding when rnd = GMP_RNDN, returns 2 or -2. + * If inexp != NULL, computes the inexact flag of the rounding. + * (In case of even rounding when rnd = GMP_RNDN, puts 2 or -2 in *inexp.) * * If flag = 1, just returns whether one should add 1 or not for rounding. * |