| Revision: | 2.3 |
| Committed: | Mon Nov 22 09:31:59 1993 UTC (31 years, 11 months ago) by greg |
| Content type: | text/plain |
| Branch: | MAIN |
| Changes since 2.2: | +1 -1 lines |
| Log Message: | compatibility fix |
| # | Content |
|---|---|
| 1 | /* Copyright (c) 1993 Regents of the University of California */ |
| 2 | |
| 3 | #ifndef lint |
| 4 | static char SCCSid[] = "$SunId$ LBL"; |
| 5 | #endif |
| 6 | |
| 7 | /* |
| 8 | * Return file date (UNIX seconds as returned by time(2) call) |
| 9 | */ |
| 10 | |
| 11 | #include <sys/types.h> |
| 12 | #include <sys/stat.h> |
| 13 | |
| 14 | |
| 15 | time_t |
| 16 | fdate(fname) /* get file date */ |
| 17 | char *fname; |
| 18 | { |
| 19 | struct stat sbuf; |
| 20 | |
| 21 | if (stat(fname, &sbuf) == -1) |
| 22 | return(0); |
| 23 | |
| 24 | return(sbuf.st_mtime); |
| 25 | } |