diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-05-07 15:13:02 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-05-07 15:13:02 +0000 |
commit | 3ffa08c3f9f5d2790dca53a5a39f95ab54390acd (patch) | |
tree | de0193ea3a91c163a9b23921b1517e85905403b0 /tests/tset_str.c | |
parent | 5b51d2ffc3e7364b683023047aaffc78d1a894a6 (diff) | |
download | mpfr-3ffa08c3f9f5d2790dca53a5a39f95ab54390acd.tar.gz |
New exponent type mpfr_exp_t for MPFR (replacing GMP's mp_exp_t).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6789 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tset_str.c')
-rw-r--r-- | tests/tset_str.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tset_str.c b/tests/tset_str.c index 6109f663c..940c57dc1 100644 --- a/tests/tset_str.c +++ b/tests/tset_str.c @@ -45,7 +45,7 @@ static void check_underflow (void) { mpfr_t a; - mp_exp_t emin, emax; + mpfr_exp_t emin, emax; int res; mpfr_init (a); @@ -102,7 +102,7 @@ main (int argc, char *argv[]) mpfr_t x, y; unsigned long k, bd, nc, i; char *str, *str2; - mp_exp_t e; + mpfr_exp_t e; int base, logbase, prec, baseprec, ret, obase; tests_start_mpfr (); @@ -771,7 +771,7 @@ main (int argc, char *argv[]) for (crnd = 0; crnd < 3; crnd++) { char *str1; - mp_exp_t exp; + mpfr_exp_t exp; *(MPFR_MANT(x)) = check_limb[climb]; MPFR_EXP(x) = 0; |