diff options
author | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-01-04 10:32:01 +0000 |
---|---|---|
committer | pelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-01-04 10:32:01 +0000 |
commit | 211c7ce5584c6a8be2f7f33e859520d2fe555c45 (patch) | |
tree | c98843bbb7d93f27b7ff9a9919846bc039d74bd7 /get_str.c | |
parent | 7e9c1569fc1491ece8a8e41c994d90763cf868d7 (diff) | |
download | mpfr-211c7ce5584c6a8be2f7f33e859520d2fe555c45.tar.gz |
Remove _MPFR_PROTO for static functions.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3169 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'get_str.c')
-rw-r--r-- | get_str.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -29,10 +29,10 @@ MA 02111-1307, USA. */ #define MPFR_NEED_LONGLONG_H #include "mpfr-impl.h" -static double mpfr_ceil_double _MPFR_PROTO ((double)); -static int mpfr_get_str_aux _MPFR_PROTO ((char *, mp_exp_t *, mp_limb_t *, - mp_size_t, mp_exp_t, long, int, size_t, mp_rnd_t)); -static mp_exp_t mpfr_get_str_compute_g _MPFR_PROTO ((int, mp_exp_t)); +static double mpfr_ceil_double (double); +static int mpfr_get_str_aux (char *, mp_exp_t *, mp_limb_t *, + mp_size_t, mp_exp_t, long, int, size_t, mp_rnd_t); +static mp_exp_t mpfr_get_str_compute_g (int, mp_exp_t); static const char num_to_text[] = "0123456789abcdefghijklmnopqrstuvwxyz"; |