diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2008-08-13 07:16:20 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2008-08-13 07:16:20 +0000 |
commit | b55b0258e074263a88d1b6839c974ac5d58968d1 (patch) | |
tree | 9776daa05749018d7a72103df1120533cf9f4f6c /include | |
parent | 55a8098d489a9755c192caab662dcc3f01dcfb67 (diff) | |
download | curl-b55b0258e074263a88d1b6839c974ac5d58968d1.tar.gz |
MingW uses gcc. Hence the suffixes for 64-bit are 'LL' and 'ULL'.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curlbuild.h.dist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/curl/curlbuild.h.dist b/include/curl/curlbuild.h.dist index 6d87d29f0..06e06adef 100644 --- a/include/curl/curlbuild.h.dist +++ b/include/curl/curlbuild.h.dist @@ -31,7 +31,7 @@ * NOTE 1: * ------- * - * See file include/curl/curlbuild.h.in, run configure, and forget + * See file include/curl/curlbuild.h.in, run configure, and forget * that this file exists it is only used for non-configure systems. * But you can keep reading if you want ;-) * @@ -230,7 +230,7 @@ # define CURL_SUFFIX_CURL_OFF_TU ULL # endif -#elif defined(__LCC__) +#elif defined(__LCC__) # define CURL_OFF_T long # define CURL_FMT_OFF_T "ld" # define CURL_FMT_OFF_TU "lu" @@ -291,8 +291,8 @@ # define CURL_FMT_OFF_TU "I64u" # define CURL_FORMAT_OFF_T "%I64d" # define CURL_SIZEOF_CURL_OFF_T 8 -# define CURL_SUFFIX_CURL_OFF_T i64 -# define CURL_SUFFIX_CURL_OFF_TU ui64 +# define CURL_SUFFIX_CURL_OFF_T LL +# define CURL_SUFFIX_CURL_OFF_TU ULL #elif defined(_MSC_VER) # if (_MSC_VER >= 900) |