summaryrefslogtreecommitdiff
path: root/tests/tsin_cos.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/tsin_cos.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/tsin_cos.c')
-rw-r--r--tests/tsin_cos.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/tsin_cos.c b/tests/tsin_cos.c
index 87b334340..2fc45b3c2 100644
--- a/tests/tsin_cos.c
+++ b/tests/tsin_cos.c
@@ -312,7 +312,7 @@ static void
test_mpfr_sincos_fast (void)
{
mpfr_t x, y, z, yref, zref, h;
- mp_prec_t p = 1000;
+ mpfr_prec_t p = 1000;
int i, inex, inexref;
mpfr_rnd_t r;
@@ -372,7 +372,7 @@ static void
bug20091007 (void)
{
mpfr_t x, y, z, yref, zref;
- mp_prec_t p = 1000;
+ mpfr_prec_t p = 1000;
int inex, inexref;
mpfr_rnd_t r = MPFR_RNDZ;
@@ -420,7 +420,7 @@ static void
bug20091008 (void)
{
mpfr_t x, y, z, yref, zref;
- mp_prec_t p = 1000;
+ mpfr_prec_t p = 1000;
int inex, inexref;
mpfr_rnd_t r = MPFR_RNDN;
@@ -468,7 +468,7 @@ static void
bug20091013 (void)
{
mpfr_t x, y, z, yref, zref;
- mp_prec_t p = 1000;
+ mpfr_prec_t p = 1000;
int inex, inexref;
mpfr_rnd_t r = MPFR_RNDN;
@@ -519,7 +519,7 @@ static void
bug20091122 (void)
{
mpfr_t x, y, z, yref, zref;
- mp_prec_t p = 3;
+ mpfr_prec_t p = 3;
mpfr_rnd_t r = MPFR_RNDN;
mpfr_init2 (x, 5);