diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-10-02 08:15:41 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2000-10-02 08:15:41 +0000 |
commit | a04e726916edbafec108c6884b9520d6dd26cdfe (patch) | |
tree | 1f32c4e8c5cb14f248db52a9df75edfa6bbd14dd /init.c | |
parent | a4a47ecb6064f7a7faa38e6dd797e0999274d35c (diff) | |
download | mpfr-a04e726916edbafec108c6884b9520d6dd26cdfe.tar.gz |
mpfr_t -> mpfr_ptr or mpfr_srcptr
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@777 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'init.c')
-rw-r--r-- | init.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -26,10 +26,10 @@ MA 02111-1307, USA. */ void #if __STDC__ -mpfr_init2 (mpfr_t x, mp_prec_t p) +mpfr_init2 (mpfr_ptr x, mp_prec_t p) #else mpfr_init2 (x, p) - mpfr_t x; + mpfr_ptr x; mp_prec_t p; #endif { @@ -49,10 +49,10 @@ mpfr_init2 (x, p) void #if __STDC__ -mpfr_init (mpfr_t x) +mpfr_init (mpfr_ptr x) #else mpfr_init (x) - mpfr_t x; + mpfr_ptr x; #endif { mpfr_init2(x, __gmp_default_fp_bit_precision); |