Added ref to Misc/NEWS file; added hint to run regen script on Linux.
[python/dscho.git] / Mac / Python / macgetmtime.c
blobaeb1e70dbd9672e8e364e2d84c089a2189c67fa5
1 #include "macstat.h"
2 #include "rename2.h"
4 /* Interfaced used by import.c */
6 long
7 getmtime(path)
8 char *path;
10 struct macstat st;
11 if (macstat(path, &st) != 0)
12 return -1L;
13 return st.st_mtime;