summaryrefslogtreecommitdiff
path: root/tests/tpow_ui.c
diff options
context:
space:
mode:
authorenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2010-06-11 16:15:19 +0000
committerenge <enge@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2010-06-11 16:15:19 +0000
commit45f72031003d79839a5817f433cd9eefb9496099 (patch)
tree4b8b4d5faf0bdfcedeb7f6e131ef654aea1ea6a7 /tests/tpow_ui.c
parent6da2e2ea44628fb6b960826abcd922151a249fa1 (diff)
downloadmpc-45f72031003d79839a5817f433cd9eefb9496099.tar.gz
replaced mp_prec_t and mp_exp_p in test directory
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@779 211d60ee-9f03-0410-a15a-8952a2c7a4e4
Diffstat (limited to 'tests/tpow_ui.c')
-rw-r--r--tests/tpow_ui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tpow_ui.c b/tests/tpow_ui.c
index d5b1916..b919d4f 100644
--- a/tests/tpow_ui.c
+++ b/tests/tpow_ui.c
@@ -23,9 +23,9 @@ MA 02111-1307, USA. */
#include "mpc-tests.h"
static void
-compare_mpc_pow (mp_prec_t pmax, int iter, unsigned long nbits)
+compare_mpc_pow (mpfr_prec_t pmax, int iter, unsigned long nbits)
{
- mp_prec_t p;
+ mpfr_prec_t p;
mpc_t x, y, z, t;
unsigned long n;
int i, inex_pow, inex_pow_ui;
@@ -86,7 +86,7 @@ main (int argc, char *argv[])
if (argc != 1)
{
- mp_prec_t p;
+ mpfr_prec_t p;
unsigned long n, k;
mpc_t res;
if (argc != 3 && argc != 4)