diff options
author | Yang Tse <yangsita@gmail.com> | 2011-07-26 17:23:27 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-07-26 17:23:27 +0200 |
commit | f1586cb4775681810afd8e6626e7842d459f3b85 (patch) | |
tree | 88590b6cd73744ed6c7ffe78a8ccafe3dfb1b90a /lib/strtoofft.c | |
parent | 983f3d70f9610a35f279b656a3322087e272f2a6 (diff) | |
download | curl-f1586cb4775681810afd8e6626e7842d459f3b85.tar.gz |
stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.h
Diffstat (limited to 'lib/strtoofft.c')
-rw-r--r-- | lib/strtoofft.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/strtoofft.c b/lib/strtoofft.c index dd897cf16..c61459de8 100644 --- a/lib/strtoofft.c +++ b/lib/strtoofft.c @@ -21,6 +21,7 @@ ***************************************************************************/ #include "setup.h" + #include "strtoofft.h" /* @@ -32,14 +33,11 @@ */ #ifdef NEED_CURL_STRTOLL -#include <stdlib.h> -#include <ctype.h> /* Range tests can be used for alphanum decoding if characters are consecutive, like in ASCII. Else an array is scanned. Determine this condition now. */ #if('9' - '0') != 9 || ('Z' - 'A') != 25 || ('z' - 'a') != 25 -#include <string.h> #define NO_RANGE_TEST |