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

Diff for /src/usr.bin/ranlib/Attic/misc.c between version 1.2 and 1.3

version 1.2, 1996/06/26 05:38:04 version 1.3, 1997/01/17 07:13:11
Line 101 
Line 101 
 {  {
         register char *ind;          register char *ind;
   
         return((ind = rindex(path, '/')) ? ind + 1 : path);          return((ind = strrchr(path, '/')) ? ind + 1 : path);
 }  }
   
 badfmt()  badfmt()

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3