| # | Line 12 | Line 12 | static char SCCSid[] = "$SunId$ LBL"; | |
|---|---|---|
| 12 | #include <sys/stat.h> | |
| 13 | ||
| 14 | ||
| 15 | < | long | 
| 15 | > | unsigned long | 
| 16 | fdate(fname) /* get file date */ | |
| 17 | char *fname; | |
| 18 | { | |
| 19 | struct stat sbuf; | |
| 20 | ||
| 21 | if (stat(fname, &sbuf) == -1) | |
| 22 | < | return(-1); | 
| 22 | > | return(0); | 
| 23 | ||
| 24 | return(sbuf.st_mtime); | |
| 25 | } | |
| – | Removed lines | 
| + | Added lines | 
| < | Changed lines | 
| > | Changed lines |