| 1 |
< |
/* Copyright (c) 1993 Regents of the University of California */ |
| 1 |
> |
/* Copyright (c) 1994 Regents of the University of California */ |
| 2 |
|
|
| 3 |
|
#ifndef lint |
| 4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
| 12 |
|
#include <sys/stat.h> |
| 13 |
|
|
| 14 |
|
|
| 15 |
< |
unsigned long |
| 15 |
> |
time_t |
| 16 |
|
fdate(fname) /* get file date */ |
| 17 |
|
char *fname; |
| 18 |
|
{ |
| 22 |
|
return(0); |
| 23 |
|
|
| 24 |
|
return(sbuf.st_mtime); |
| 25 |
+ |
} |
| 26 |
+ |
|
| 27 |
+ |
|
| 28 |
+ |
int |
| 29 |
+ |
setfdate(fname, ftim) /* set file date */ |
| 30 |
+ |
char *fname; |
| 31 |
+ |
long ftim; |
| 32 |
+ |
{ |
| 33 |
+ |
time_t ftm[2]; |
| 34 |
+ |
|
| 35 |
+ |
ftm[0] = ftm[1] = ftim; |
| 36 |
+ |
|
| 37 |
+ |
return(utime(fname, ftm)); |
| 38 |
|
} |