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