Fix fopen64, ftello64, fseeko64 declarations on all platforms

pull/3556/head
Jean-Louis 2020-12-24 03:18:09 +01:00
parent 54be7ac582
commit c464d01778
1 changed files with 17 additions and 18 deletions

View File

@ -25,12 +25,7 @@
# define ftello64 ftell
# define fseeko64 fseek
#else
# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__OpenBSD__) || defined(__APPLE__) || defined(__ANDROID__)
# define fopen64 fopen
# define ftello64 ftello
# define fseeko64 fseeko
# endif
# ifdef _MSC_VER
#if defined(_MSC_VER)
# define fopen64 fopen
# if (_MSC_VER >= 1400) && (!(defined(NO_MSCVER_FILE64_FUNC)))
# define ftello64 _ftelli64
@ -39,7 +34,11 @@
# define ftello64 ftell
# define fseeko64 fseek
# endif
# endif
#else
# define fopen64 fopen
# define ftello64 ftello
# define fseeko64 fseeko
#endif
#endif
#ifdef __cplusplus