aboutsummaryrefslogtreecommitdiff
path: root/unix/boot/bootlib/osfdate.c
blob: 900b2a9d2b1bff977f189a8ea659426f887b1d9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
 */

#include <sys/types.h>
#include <sys/stat.h>
#include "bootlib.h"


/* FDATE -- Get the date of last modification of a file.  [MACHDEP]
 */
long
os_fdate (char *fname)
{
	struct	stat buf;

	if (stat (vfn2osfn(fname,0), &buf) == ERR)
	    return (0);
	else
	    return (buf.st_mtime);
}