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

Diff for /src/usr.bin/tail/tail.c between version 1.10 and 1.11

version 1.10, 2003/06/03 02:56:17 version 1.11, 2003/06/10 22:20:52
Line 65 
Line 65 
 static void usage(void);  static void usage(void);
   
 int  int
 main(argc, argv)  main(int argc, char *argv[])
         int argc;  
         char *argv[];  
 {  {
         struct stat sb;          struct stat sb;
         FILE *fp;          FILE *fp;
Line 218 
Line 216 
  * the option argument for a -b, -c or -n option gets converted.   * the option argument for a -b, -c or -n option gets converted.
  */   */
 static void  static void
 obsolete(argv)  obsolete(char *argv[])
         char *argv[];  
 {  {
         char *ap, *p, *t;          char *ap, *p, *t;
         int len;          int len;
Line 301 
Line 298 
 }  }
   
 static void  static void
 usage()  usage(void)
 {  {
         (void)fprintf(stderr,          (void)fprintf(stderr,
             "usage: tail [-f | -r] [-b # | -c # | -n #] [file ...]\n");              "usage: tail [-f | -r] [-b # | -c # | -n #] [file ...]\n");

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11