summaryrefslogtreecommitdiff
path: root/tests/tsgn.c
diff options
context:
space:
mode:
authorthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-09-18 16:33:16 +0000
committerthevenyp <thevenyp@280ebfd0-de03-0410-8827-d642c229c3f4>2008-09-18 16:33:16 +0000
commit887678b6cee0e89e40df2b3c3a1cb8e0713292fd (patch)
tree4fda1c8c4d3e2743d3f3ff10161706077d1d7646 /tests/tsgn.c
parent0f0fceda1553e7fd6729db25f910666873bc76a0 (diff)
downloadmpfr-887678b6cee0e89e40df2b3c3a1cb8e0713292fd.tar.gz
Remove obsolete mpfr_random function and replace it by mpfr_urandomb in tests.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5640 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tsgn.c')
-rw-r--r--tests/tsgn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tsgn.c b/tests/tsgn.c
index 47f090b77..3e152ee33 100644
--- a/tests/tsgn.c
+++ b/tests/tsgn.c
@@ -79,7 +79,7 @@ check_sgn(void)
mpfr_init(x);
for(i = 0 ; i < 100 ; i++)
{
- mpfr_random(x);
+ mpfr_urandomb (x, RANDS);
if (i&1)
{
MPFR_SET_POS(x);