summaryrefslogtreecommitdiff
path: root/tests/tatan.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-05-04 16:27:56 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2009-05-04 16:27:56 +0000
commitf07612e6e75cff1d728b172547deb314a42dccd6 (patch)
tree7980cb2950429ee5d03930ffdf7f3decccd505cd /tests/tatan.c
parent48c405b7f92f08fe373bae75668db87403d447d7 (diff)
downloadmpfr-f07612e6e75cff1d728b172547deb314a42dccd6.tar.gz
tests/tatan.c: replaced GMP_RNDN by MPFR_RNDN.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6185 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tatan.c')
-rw-r--r--tests/tatan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tatan.c b/tests/tatan.c
index 23edaf9f1..0218df040 100644
--- a/tests/tatan.c
+++ b/tests/tatan.c
@@ -454,10 +454,10 @@ atan2_different_prec (void)
mpfr_init2 (x, 59);
mpfr_init2 (y, 86);
- mpfr_set_ui (x, 1, GMP_RNDN);
- mpfr_set_ui (y, 1, GMP_RNDN);
+ mpfr_set_ui (x, 1, MPFR_RNDN);
+ mpfr_set_ui (y, 1, MPFR_RNDN);
mpfr_nextbelow (y);
- mpfr_atan2 (a, y, x, GMP_RNDN);
+ mpfr_atan2 (a, y, x, MPFR_RNDN);
mpfr_clears (a, x, y, (mpfr_ptr) 0);
}