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

/* Interfaced used by import.c */

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