summaryrefslogtreecommitdiff
path: root/strtofr.c
diff options
context:
space:
mode:
authorpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-06-08 11:45:06 +0000
committerpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2005-06-08 11:45:06 +0000
commit71b86206d948c3c0fc94c696aa2a30e26a1a083e (patch)
tree6c10d5d44183eb4df2cc3355b331778eb054ade1 /strtofr.c
parente32b518b5f09a738b2117e0e657bfce594691b1e (diff)
downloadmpfr-71b86206d948c3c0fc94c696aa2a30e26a1a083e.tar.gz
Fix warnings due to comparaison between signed and unsigned.
Reinclude string.h for strtofr. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3637 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'strtofr.c')
-rw-r--r--strtofr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/strtofr.c b/strtofr.c
index 0e2633859..15b622202 100644
--- a/strtofr.c
+++ b/strtofr.c
@@ -19,6 +19,7 @@ along with the MPFR Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Place, Fifth Floor, Boston,
MA 02110-1301, USA. */
+#include <string.h> /* For strlen */
#include <stdlib.h> /* For strtol */
#include <ctype.h> /* For isdigit */