summaryrefslogtreecommitdiff
path: root/tests/tsqrt.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-04-10 12:13:25 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2002-04-10 12:13:25 +0000
commit610a8851990d905908fae318fc91dda3b21ee270 (patch)
tree69a66b428bab8b1c92dd69410874dcd7089b84ca /tests/tsqrt.c
parent11b100b3ef4098c0afc5f5f82a9600077ff89ee9 (diff)
downloadmpfr-610a8851990d905908fae318fc91dda3b21ee270.tar.gz
HAVE_FESETROUND renamed to MPFR_HAVE_FESETROUND to avoid possible
name conflict. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1844 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsqrt.c')
-rw-r--r--tests/tsqrt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tsqrt.c b/tests/tsqrt.c
index 5cd5e4ffa..1144c7827 100644
--- a/tests/tsqrt.c
+++ b/tests/tsqrt.c
@@ -49,7 +49,7 @@ check3 (double a, mp_rnd_t rnd_mode, double Q)
ck = (Q!=-1.0); /* if ck=1, then Q is certified correct */
mpfr_init2(q, 53);
mpfr_set_d(q, a, rnd_mode);
-#ifdef HAVE_FESETROUND
+#ifdef MPFR_HAVE_FESETROUND
mpfr_set_machine_rnd_mode(rnd_mode);
#endif
mpfr_sqrt(q, q, rnd_mode);
@@ -326,7 +326,7 @@ main (void)
double a;
mp_prec_t p;
int k;
-#ifdef HAVE_FESETROUND
+#ifdef MPFR_HAVE_FESETROUND
int i;
mpfr_test_init ();