Commit 8a62005a authored by Deomid Ryabkov's avatar Deomid Ryabkov Committed by rojer

Use _stati64 on mingw64 in 32-bit mode

cesanta/mongoose#644, h/t @spuschhof

PUBLISHED_FROM=2df259156e347b941a75008ce07ea4fc2584dc2a
parent 616f54c4
...@@ -209,7 +209,7 @@ typedef uint32_t in_addr_t; ...@@ -209,7 +209,7 @@ typedef uint32_t in_addr_t;
#define INT64_FMT "I64d" #define INT64_FMT "I64d"
#define INT64_X_FMT "I64x" #define INT64_X_FMT "I64x"
#define SIZE_T_FMT "Iu" #define SIZE_T_FMT "Iu"
#ifdef __MINGW32__ #if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
typedef struct stat cs_stat_t; typedef struct stat cs_stat_t;
#else #else
typedef struct _stati64 cs_stat_t; typedef struct _stati64 cs_stat_t;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment