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

This commit is contained in:
Christian Heimes 2008-02-23 23:59:45 +00:00
parent 4425e7cee7
commit 5e8e6d2454
1 changed files with 5 additions and 0 deletions

View File

@ -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 */