1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Gisle's fix to support Borland builds again.

This commit is contained in:
Gunter Knauf 2004-07-15 01:08:08 +00:00
parent 15a403a98d
commit 1318760ad2

View File

@ -39,7 +39,12 @@
#undef SIZEOF_CURL_OFF_T
#endif
/* Borland lacks _lseeki64(), so we don't support >2GB files */
#ifdef __BORLANDC__
#define SIZEOF_CURL_OFF_T 4
#else
#define SIZEOF_CURL_OFF_T 8
#endif
/* Define if you have the ANSI C header files. */
#define STDC_HEADERS 1