summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macgetmtime.c
blob: 9ba813659b9bf3d61f5a763eb3646b1c8b0c05b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stat.h>

/* Interfaced used by import.c */

long
getmtime(path)
	char *path;
{
	struct stat st;
	if (stat(path, &st) != 0)
		return -1L;
	return st.st_mtime;
}