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

Diff for /src/usr.bin/colrm/colrm.c between version 1.7 and 1.8

version 1.7, 2003/06/03 02:56:07 version 1.8, 2003/06/10 22:20:45
Line 59 
Line 59 
 void usage(void);  void usage(void);
   
 int  int
 main(argc, argv)  main(int argc, char *argv[])
         int argc;  
         char *argv[];  
 {  {
         u_long column, start, stop;          u_long column, start, stop;
         int ch;          int ch;
Line 124 
Line 122 
 }  }
   
 void  void
 check(stream)  check(FILE *stream)
         FILE *stream;  
 {  {
         if (feof(stream))          if (feof(stream))
                 exit(0);                  exit(0);
Line 134 
Line 131 
 }  }
   
 void  void
 usage()  usage(void)
 {  {
         (void)fprintf(stderr, "usage: colrm [start [stop]]\n");          (void)fprintf(stderr, "usage: colrm [start [stop]]\n");
         exit(1);          exit(1);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8