summaryrefslogtreecommitdiff
path: root/tests/reuse.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-08-14 13:37:06 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-08-14 13:37:06 +0000
commit3648dfb0a46ab1189a6fa993bbc38a0033f21d3c (patch)
tree6e6d098a0d7c203d868ab0cbf40420f077826d78 /tests/reuse.c
parentd06fc419857a4c86dac062a61ad945d8d50f5cd6 (diff)
downloadmpfr-3648dfb0a46ab1189a6fa993bbc38a0033f21d3c.tar.gz
added mpfr_asin
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1118 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/reuse.c')
-rw-r--r--tests/reuse.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/reuse.c b/tests/reuse.c
index 79b82861a..b56a95683 100644
--- a/tests/reuse.c
+++ b/tests/reuse.c
@@ -391,7 +391,8 @@ main (void)
testfunc = mpfr_ui_div; testui2 ("mpfr_ui_div", 53, GMP_RNDN);
testfunc = mpfr_ui_sub; testui2 ("mpfr_ui_sub", 53, GMP_RNDN);
testfunc = mpfr_trunc; test2 ("mpfr_trunc", 53, GMP_RNDN);
- testfunc = (void*) mpfr_atan; test2 ("mpfr_arctan", 53, GMP_RNDN);
+ testfunc = (void*) mpfr_asin; test2 ("mpfr_asin", 53, GMP_RNDN);
+ testfunc = (void*) mpfr_atan; test2 ("mpfr_atan", 53, GMP_RNDN);
testfunc = (void*) mpfr_sinh; test2 ("mpfr_sinh", 53, GMP_RNDN);
testfunc = (void*) mpfr_cosh; test2 ("mpfr_cosh", 53, GMP_RNDN);
testfunc = (void*) mpfr_tanh; test2 ("mpfr_tanh", 53, GMP_RNDN);
@@ -400,7 +401,5 @@ main (void)
testfunc = (void*) mpfr_atanh; test2 ("mpfr_atanh", 53, GMP_RNDN);
testfunc = (void*) mpfr_exp2; test2 ("mpfr_exp2", 53, GMP_RNDN);
-
-
return 0;
}