blob: c58100992da94c2a8afee9c03868f772d85ebef1 [file] [log] [blame]
Guido van Rossumce9739b1994-01-05 16:17:15 +00001#include "::unixemu:stat.h"
2
3/* Interfaced used by import.c */
4
5long
6getmtime(path)
7 char *path;
8{
9 struct stat st;
10 if (stat(path, &st) != 0)
11 return -1L;
12 return st.st_mtime;
13}