MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short.
This commit is contained in:
parent
4425e7cee7
commit
5e8e6d2454
|
@ -22,6 +22,11 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef MS_WINDOWS
|
||||||
|
/* for stat.st_mode */
|
||||||
|
typedef unsigned short mode_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
extern time_t PyOS_GetLastModificationTime(char *, FILE *);
|
extern time_t PyOS_GetLastModificationTime(char *, FILE *);
|
||||||
/* In getmtime.c */
|
/* In getmtime.c */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue