summaryrefslogtreecommitdiff
path: root/get_str.c
diff options
context:
space:
mode:
authorpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-01-28 11:00:34 +0000
committerpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-01-28 11:00:34 +0000
commiteb81bdc84b25a2f699750119a794aa7fb41a677e (patch)
tree649abc43066ad08e483847bed570267482b1384a /get_str.c
parent62a12d426d16e9b8b3b5699778abada77918dc04 (diff)
downloadmpfr-eb81bdc84b25a2f699750119a794aa7fb41a677e.tar.gz
FIx a warning (Wrong proto between declaration and implementation :
forget some const). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3233 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'get_str.c')
-rw-r--r--get_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/get_str.c b/get_str.c
index e68d851f8..fdd0c9b6a 100644
--- a/get_str.c
+++ b/get_str.c
@@ -30,7 +30,7 @@ MA 02111-1307, USA. */
#include "mpfr-impl.h"
static double mpfr_ceil_double (double);
-static int mpfr_get_str_aux (char *, mp_exp_t *, mp_limb_t *,
+static int mpfr_get_str_aux (char *const, mp_exp_t *const, mp_limb_t *const,
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);