mirror of
https://github.com/facebook/zstd.git
synced 2025-03-06 16:56:49 +02:00
PR feedback
This commit is contained in:
parent
757e29e170
commit
6b046f5841
@ -79,7 +79,7 @@
|
||||
***************************************************************/
|
||||
#if defined(LIBC_NO_FSEEKO)
|
||||
/* Some older libc implementations don't include these functions (e.g. Bionic < 24) */
|
||||
#define LONG_SEEK fseek
|
||||
# define LONG_SEEK fseek
|
||||
#elif defined(_MSC_VER) && _MSC_VER >= 1400
|
||||
# define LONG_SEEK _fseeki64
|
||||
#elif !defined(__64BIT__) && (PLATFORM_POSIX_VERSION >= 200112L) /* No point defining Large file for 64 bit */
|
||||
|
@ -81,8 +81,8 @@ extern UTIL_time_t g_displayClock;
|
||||
/* Avoid fseek()'s 2GiB barrier with MSVC, macOS, *BSD, MinGW */
|
||||
#if defined(LIBC_NO_FSEEKO)
|
||||
/* Some older libc implementations don't include these functions (e.g. Bionic < 24) */
|
||||
#define LONG_SEEK fseek
|
||||
#define LONG_TELL ftell
|
||||
# define LONG_SEEK fseek
|
||||
# define LONG_TELL ftell
|
||||
#elif defined(_MSC_VER) && _MSC_VER >= 1400
|
||||
# define LONG_SEEK _fseeki64
|
||||
# define LONG_TELL _ftelli64
|
||||
|
@ -26,7 +26,7 @@
|
||||
***************************************************************/
|
||||
#if defined(LIBC_NO_FSEEKO)
|
||||
/* Some older libc implementations don't include these functions (e.g. Bionic < 24) */
|
||||
#define UTIL_fseek fseek
|
||||
# define UTIL_fseek fseek
|
||||
#elif defined(_MSC_VER) && (_MSC_VER >= 1400)
|
||||
# define UTIL_fseek _fseeki64
|
||||
#elif !defined(__64BIT__) && (PLATFORM_POSIX_VERSION >= 200112L) /* No point defining Large file for 64 bit */
|
||||
|
Loading…
x
Reference in New Issue
Block a user