mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-23 17:00:52 +00:00
15 lines
266 B
C
15 lines
266 B
C
#ifndef INCLUDE_mingw_compat__
|
|
#define INCLUDE_mingw_compat__
|
|
|
|
#if defined(__MINGW32__)
|
|
|
|
/* use a 64-bit file offset type */
|
|
# define off_t off64_t
|
|
# define lseek _lseeki64
|
|
# define stat _stati64
|
|
# define fstat _fstati64
|
|
|
|
#endif
|
|
|
|
#endif /* INCLUDE_mingw_compat__ */
|