Pristine Ack-5.5
[Ack-5.5.git] / modules / src / system / modtime.c
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: modtime.c,v 1.4 1994/06/24 11:24:32 ceriel Exp $ */
6
7 #include <sys/types.h>
8 #include <sys/stat.h>
9
10 #include <system.h>
11
12 long
13 sys_modtime(path)
14         char *path;
15 {
16         struct stat st_buf;
17
18         if (stat(path, &st_buf) != 0)
19                 return -1L;
20         return (long) st_buf.st_mtime;
21 }