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

Diff for /src/usr.bin/rcs/rlog.c between version 1.31 and 1.32

version 1.31, 2006/03/20 17:14:47 version 1.32, 2006/03/23 13:28:23
Line 30 
Line 30 
 #include "rcsprog.h"  #include "rcsprog.h"
 #include "diff.h"  #include "diff.h"
   
 static int        rlog_file(const char *, const char *);  static void     rlog_file(const char *, const char *);
 static void       rlog_rev_print(struct rcs_delta *);  static void     rlog_rev_print(struct rcs_delta *);
   
 #define REVSEP          "----------------------------"  #define REVSEP          "----------------------------"
 #define REVEND \  #define REVEND \
Line 152 
Line 152 
         return (0);          return (0);
 }  }
   
 static int  static void
 rlog_file(const char *fname, const char *fpath)  rlog_file(const char *fname, const char *fpath)
 {  {
         char numb[64];          char numb[64];
Line 209 
Line 209 
         }          }
   
         printf("%s\n", REVEND);          printf("%s\n", REVEND);
         return (0);  
 }  }
   
 static void  static void

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32