blob: aeb1e70dbd9672e8e364e2d84c089a2189c67fa5 [file] [log] [blame]
Guido van Rossum739267b1994-08-29 08:42:37 +00001#include "macstat.h"
Guido van Rossumfffb8bb1995-01-12 12:37:24 +00002#include "rename2.h"
Guido van Rossumce9739b1994-01-05 16:17:15 +00003
4/* Interfaced used by import.c */
5
6long
7getmtime(path)
8 char *path;
9{
Guido van Rossum739267b1994-08-29 08:42:37 +000010 struct macstat st;
11 if (macstat(path, &st) != 0)
Guido van Rossumce9739b1994-01-05 16:17:15 +000012 return -1L;
13 return st.st_mtime;
14}