summaryrefslogtreecommitdiff
path: root/tests/tsub.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-06-26 15:35:01 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-06-26 15:35:01 +0000
commit3f944f217a6bc9b3d72b73067de160e768f6a4e3 (patch)
tree89d977f3c15ee4383fe0629c40f504c14a352090 /tests/tsub.c
parent0a7b8e19cf4789f503f55b4e046327c38ab786b3 (diff)
downloadmpfr-3f944f217a6bc9b3d72b73067de160e768f6a4e3.tar.gz
mp_rnd_t -> mpfr_rnd_t
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6295 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsub.c')
-rw-r--r--tests/tsub.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tsub.c b/tests/tsub.c
index 190a0f6b6..f0fe03729 100644
--- a/tests/tsub.c
+++ b/tests/tsub.c
@@ -27,7 +27,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
#ifdef CHECK_EXTERNAL
static int
-test_sub (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mp_rnd_t rnd_mode)
+test_sub (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, mpfr_rnd_t rnd_mode)
{
int res;
int ok = rnd_mode == MPFR_RNDN && mpfr_number_p (b) && mpfr_number_p (c);
@@ -354,7 +354,7 @@ static void
check_two_sum (mp_prec_t p)
{
mpfr_t x, y, u, v, w;
- mp_rnd_t rnd;
+ mpfr_rnd_t rnd;
int inexact;
mpfr_init2 (x, p);
@@ -400,7 +400,7 @@ check_inexact (void)
mpfr_t x, y, z, u;
mp_prec_t px, py, pu, pz;
int inexact, cmp;
- mp_rnd_t rnd;
+ mpfr_rnd_t rnd;
mpfr_init (x);
mpfr_init (y);