Commit 5e8e6d24 authored by Christian Heimes's avatar Christian Heimes

MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short.

parent 4425e7ce
......@@ -22,6 +22,11 @@
extern "C" {
#endif
#ifdef MS_WINDOWS
/* for stat.st_mode */
typedef unsigned short mode_t;
#endif
extern time_t PyOS_GetLastModificationTime(char *, FILE *);
/* In getmtime.c */
......
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