At the release of 1.0.1.
[python/dscho.git] / Mac / Python / macgetmtime.c
blobc58100992da94c2a8afee9c03868f772d85ebef1
1 #include "::unixemu:stat.h"
3 /* Interfaced used by import.c */
5 long
6 getmtime(path)
7 char *path;
9 struct stat st;
10 if (stat(path, &st) != 0)
11 return -1L;
12 return st.st_mtime;