Commit 0acd892b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: some compilers fail to define stat correctly

parent a728a7ed
...@@ -65,6 +65,9 @@ static inline void vlc_rewinddir( DIR *dir ) ...@@ -65,6 +65,9 @@ static inline void vlc_rewinddir( DIR *dir )
# define rewinddir vlc_rewinddir # define rewinddir vlc_rewinddir
# include <sys/stat.h> # include <sys/stat.h>
# ifndef stat
# define stat _stati64
# endif
#endif #endif
struct stat; struct stat;
......
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