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
This commit is contained in:
Daniel Stenberg 2025-03-29 14:13:29 +01:00
parent c4863e9d3b
commit 33ad7aabb5
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -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