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

Diff for /src/usr.bin/cvs/rcsnum.c between version 1.56 and 1.57

version 1.56, 2015/01/16 06:40:07 version 1.57, 2015/11/05 09:48:21
Line 25 
Line 25 
  */   */
   
 #include <ctype.h>  #include <ctype.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "cvs.h"  #include "cvs.h"
Line 96 
Line 97 
 void  void
 rcsnum_free(RCSNUM *rn)  rcsnum_free(RCSNUM *rn)
 {  {
         xfree(rn);          free(rn);
 }  }
   
 /*  /*

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