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

Diff for /src/usr.bin/strip/Attic/strip.c between version 1.19 and 1.20

version 1.19, 2003/06/03 02:56:17 version 1.20, 2003/06/10 22:20:52
Line 72 
Line 72 
 int xflag = 0;  int xflag = 0;
   
 int  int
 main(argc, argv)  main(int argc, char *argv[])
         int argc;  
         char *argv[];  
 {  {
         int fd;          int fd;
         EXEC *ep;          EXEC *ep;
Line 145 
Line 143 
 }  }
   
 int  int
 s_sym(fn, fd, ep, sp, sz)  s_sym(const char *fn, int fd, EXEC *ep, struct stat *sp, off_t *sz)
         const char *fn;  
         int fd;  
         EXEC *ep;  
         struct stat *sp;  
         off_t *sz;  
 {  {
         char *neweof;          char *neweof;
 #if     0  #if     0
Line 212 
Line 205 
 }  }
   
 int  int
 s_stab(fn, fd, ep, sp, sz)  s_stab(const char *fn, int fd, EXEC *ep, struct stat *sp, off_t *sz)
         const char *fn;  
         int fd;  
         EXEC *ep;  
         struct stat *sp;  
         off_t *sz;  
 {  {
         int cnt, len;          int cnt, len;
         char *nstr, *nstrbase=0, *used=0, *p, *strbase;          char *nstr, *nstrbase=0, *used=0, *p, *strbase;
Line 384 
Line 372 
 }  }
   
 void  void
 usage()  usage(void)
 {  {
         (void)fprintf(stderr, "usage: strip [-dx] file ...\n");          (void)fprintf(stderr, "usage: strip [-dx] file ...\n");
         exit(1);          exit(1);

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20