summaryrefslogtreecommitdiff
path: root/tests/tpow.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2010-04-30 14:37:47 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2010-04-30 14:37:47 +0000
commitacfc55ee40c11735c67f86554adae6f06fb27bf6 (patch)
treeb3825ef6d5f8bb416694facf37f449375aacb391 /tests/tpow.c
parent36b2d705037cc99806b571fc7222f445e7d10f81 (diff)
downloadmpfr-acfc55ee40c11735c67f86554adae6f06fb27bf6.tar.gz
Changed mp_prec_t into mpfr_prec_t.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6767 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tpow.c')
-rw-r--r--tests/tpow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tpow.c b/tests/tpow.c
index fbc5147b1..982d741ac 100644
--- a/tests/tpow.c
+++ b/tests/tpow.c
@@ -411,11 +411,11 @@ pow_si_long_min (void)
}
static void
-check_inexact (mp_prec_t p)
+check_inexact (mpfr_prec_t p)
{
mpfr_t x, y, z, t;
unsigned long u;
- mp_prec_t q;
+ mpfr_prec_t q;
int inexact, cmp;
int rnd;
@@ -1371,7 +1371,7 @@ bug20080820 (void)
int
main (int argc, char **argv)
{
- mp_prec_t p;
+ mpfr_prec_t p;
tests_start_mpfr ();