Loading lib/strtoofft.c +3 −3 Original line number Diff line number Diff line Loading @@ -35,15 +35,15 @@ static int get_char(char c, int base); * Emulated version of the strtoll function. This extracts a long long * value from the given input string and returns it. */ long long curl_off_t Curl_strtoll(const char *nptr, char **endptr, int base) { char *end; int is_negative = 0; int overflow; int i; long long value = 0; long long newval; curl_off_t value = 0; curl_off_t newval; /* Skip leading whitespace. */ end = (char *)nptr; Loading lib/strtoofft.h +1 −1 Original line number Diff line number Diff line Loading @@ -37,7 +37,7 @@ #if HAVE_STRTOLL #define strtoofft strtoll #else long long Curl_strtoll(const char *nptr, char **endptr, int base); curl_off_t Curl_strtoll(const char *nptr, char **endptr, int base); #define strtoofft Curl_strtoll #define NEED_CURL_STRTOLL #endif Loading Loading
lib/strtoofft.c +3 −3 Original line number Diff line number Diff line Loading @@ -35,15 +35,15 @@ static int get_char(char c, int base); * Emulated version of the strtoll function. This extracts a long long * value from the given input string and returns it. */ long long curl_off_t Curl_strtoll(const char *nptr, char **endptr, int base) { char *end; int is_negative = 0; int overflow; int i; long long value = 0; long long newval; curl_off_t value = 0; curl_off_t newval; /* Skip leading whitespace. */ end = (char *)nptr; Loading
lib/strtoofft.h +1 −1 Original line number Diff line number Diff line Loading @@ -37,7 +37,7 @@ #if HAVE_STRTOLL #define strtoofft strtoll #else long long Curl_strtoll(const char *nptr, char **endptr, int base); curl_off_t Curl_strtoll(const char *nptr, char **endptr, int base); #define strtoofft Curl_strtoll #define NEED_CURL_STRTOLL #endif Loading