1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

MinGW-w64 requires _FILE_OFFSET_BITS 64

This commit is contained in:
Przemyslaw Skibinski
2017-02-13 13:57:29 +01:00
parent 09c8e5390d
commit 35bf23c086
2 changed files with 3 additions and 3 deletions

View File

@ -187,7 +187,7 @@ UTIL_STATIC U64 UTIL_getFileSize(const char* infilename)
{
int r;
#if defined(_MSC_VER)
struct _stat64 statbuf;
struct __stat64 statbuf;
r = _stat64(infilename, &statbuf);
if (r || !(statbuf.st_mode & S_IFREG)) return 0; /* No good... */
#elif defined(__MINGW32__) && defined (__MSVCRT__)