diff options
author | Kevin Ryde <user42@zip.com.au> | 2002-03-09 23:49:20 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2002-03-09 23:49:20 +0100 |
commit | 5548ebac58434a675c5c9daa25dbc1fe572beb0c (patch) | |
tree | 6a9e6f49e2f25c7401b64946fdf055bf8b2e965d /mpfr/tests/tdump.c | |
parent | 9262a18b652b66e71b8fd0fb84f77e3c8588e21c (diff) | |
download | gmp-5548ebac58434a675c5c9daa25dbc1fe572beb0c.tar.gz |
* mpfr: Update to 20020301, except internal_ceil_exp2.c,
internal_ceil_log2.c, internal_floor_log2.c renamed to i_ceil_exp2.c,
i_ceil_log2.c, i_floor_log2.c to be unique in DOS 8.3. And sqrtrem.c
removed since no longer required.
Diffstat (limited to 'mpfr/tests/tdump.c')
-rw-r--r-- | mpfr/tests/tdump.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mpfr/tests/tdump.c b/mpfr/tests/tdump.c index 8c3a51f09..8da7069f9 100644 --- a/mpfr/tests/tdump.c +++ b/mpfr/tests/tdump.c @@ -30,11 +30,11 @@ main (void) { mpfr_t z; - mpfr_init2(z, 100); - mpfr_set_ui(z, 0, GMP_RNDN); - mpfr_dump(z, GMP_RNDD); - printf(" ^--- 0.e1 printed above is ok\n"); - mpfr_clear(z); + mpfr_init2 (z, 2); + mpfr_set_ui (z, 0, GMP_RNDN); + mpfr_dump (z, GMP_RNDD); + printf (" ^--- 0.00e0 printed above is ok\n"); + mpfr_clear (z); return 0; } |