mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
Must include <io.h> and <sys/stat.h> before redefining
stat(), fstat() and lseek().
This commit is contained in:
parent
26fe6da93b
commit
f71725de6e
@ -135,8 +135,11 @@ typedef unsigned char bool;
|
||||
|
||||
/* To make large file support transparent even on Windows */
|
||||
#if defined(WIN32) && (SIZEOF_CURL_OFF_T > 4)
|
||||
#include <sys/stat.h> /* must come first before we redefine stat() */
|
||||
#include <io.h>
|
||||
#define lseek(x,y,z) _lseeki64(x, y, z)
|
||||
#define struct_stat struct _stati64
|
||||
#define stat(file,st) _stati64(file,st)
|
||||
#define fstat(fd,st) _fstati64(fd,st)
|
||||
#else
|
||||
#define struct_stat struct stat
|
||||
|
Loading…
x
Reference in New Issue
Block a user