diff options
Diffstat (limited to 'lib/curl_setup.h')
-rw-r--r-- | lib/curl_setup.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/curl_setup.h b/lib/curl_setup.h index f128696e9..e4503c64c 100644 --- a/lib/curl_setup.h +++ b/lib/curl_setup.h @@ -447,6 +447,15 @@ # endif #endif +#ifndef SIZE_T_MAX +/* some limits.h headers have this defined, some don't */ +#if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4) +#define SIZE_T_MAX 18446744073709551615U +#else +#define SIZE_T_MAX 4294967295U +#endif +#endif + /* * Arg 2 type for gethostname in case it hasn't been defined in config file. */ |