summaryrefslogtreecommitdiff
path: root/tests/tstckintc.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/tstckintc.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/tstckintc.c')
-rw-r--r--tests/tstckintc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tstckintc.c b/tests/tstckintc.c
index a7e0dfa35..84321b918 100644
--- a/tests/tstckintc.c
+++ b/tests/tstckintc.c
@@ -29,7 +29,7 @@ http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
long Buffer[BUFFER_SIZE];
char *stack = (char *) Buffer;
-mp_prec_t p = PREC_TESTED;
+mpfr_prec_t p = PREC_TESTED;
#define ALIGNED(s) (((s) + sizeof (long) - 1) / sizeof (long) * sizeof (long))
@@ -48,7 +48,7 @@ new_st (size_t s)
/* Alloc a new mpfr_t on the main stack */
static mpfr_ptr
-new_mpfr (mp_prec_t p)
+new_mpfr (mpfr_prec_t p)
{
mpfr_ptr x = (mpfr_ptr) new_st (sizeof (mpfr_t));
void *mantissa = new_st (mpfr_custom_get_size (p));