Updated for 2.1a3
[python/dscho.git] / Python / getmtime.c
blobc77782df67ba6729387ee5ef21b229c0a6591308
2 /* Subroutine to get the last modification time of a file */
4 /* (A separate file because this may be OS dependent) */
6 #include "Python.h"
7 #include "config.h"
9 time_t
10 PyOS_GetLastModificationTime(char *path, FILE *fp)
12 struct stat st;
13 if (fstat(fileno(fp), &st) != 0)
14 return -1;
15 else
16 return st.st_mtime;