[BACK]Return to rcsclean.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rcs

Diff for /src/usr.bin/rcs/rcsclean.c between version 1.56 and 1.57

version 1.56, 2016/08/26 09:02:54 version 1.57, 2023/08/11 05:02:21
Line 25 
Line 25 
  */   */
   
 #include <sys/types.h>  #include <sys/types.h>
   #include <sys/stat.h>
   
 #include <dirent.h>  #include <dirent.h>
 #include <err.h>  #include <err.h>
Line 137 
Line 138 
         char fpath[PATH_MAX], numb[RCS_REV_BUFSZ];          char fpath[PATH_MAX], numb[RCS_REV_BUFSZ];
         RCSNUM *rev;          RCSNUM *rev;
         BUF *b1, *b2;          BUF *b1, *b2;
         time_t rcs_mtime = -1;          struct timespec rcs_mtime = { .tv_sec = 0, .tv_nsec = UTIME_OMIT };
   
         b1 = b2 = NULL;          b1 = b2 = NULL;
         file = NULL;          file = NULL;

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57