From: Daniel Stenberg Date: Sat, 29 Mar 2025 13:13:29 +0000 (+0100) Subject: curl/system.h: drop leftover comment about 32 bit curl_off_t X-Git-Tag: curl-8_13_0~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33ad7aabb5acf34add4f35b916a7195c61705ff2;p=thirdparty%2Fcurl.git curl/system.h: drop leftover comment about 32 bit curl_off_t curl MUST have a 64 bit curl_off_t these days Closes #16867 --- diff --git a/include/curl/system.h b/include/curl/system.h index 589b21dbc8..00bd638ce4 100644 --- a/include/curl/system.h +++ b/include/curl/system.h @@ -36,13 +36,10 @@ * curl_off_t * ---------- * - * For any given platform/compiler curl_off_t must be typedef'ed to a 64-bit + * For any given platform/compiler curl_off_t MUST be typedef'ed to a 64-bit * wide signed integral data type. The width of this data type must remain * constant and independent of any possible large file support settings. * - * As an exception to the above, curl_off_t shall be typedef'ed to a 32-bit - * wide signed integral data type if there is no 64-bit type. - * * As a general rule, curl_off_t shall not be mapped to off_t. This rule shall * only be violated if off_t is the only 64-bit data type available and the * size of off_t is independent of large file support settings. Keep your