Fix usage of deprecated stat64 on apple.

This commit is contained in:
Bartosz Taudul 2021-01-26 20:03:35 +01:00
parent c8ea47782c
commit 2b3405b9c7

View File

@ -16,7 +16,7 @@
#ifdef _MSC_VER
# define stat64 _stat64
#endif
#ifdef __CYGWIN__
#if defined __CYGWIN__ || defined __APPLE__
# define stat64 stat
#endif