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

Diff for /src/usr.bin/diff/diff.c between version 1.18 and 1.19

version 1.18, 2003/06/27 17:08:45 version 1.19, 2003/07/04 02:54:36
Line 63 
Line 63 
 int     rflag;                  /* recursively trace directories */  int     rflag;                  /* recursively trace directories */
 int     sflag;                  /* announce files which are same */  int     sflag;                  /* announce files which are same */
 char    *start;                 /* do file only if name >= this */  char    *start;                 /* do file only if name >= this */
 /* Variables for -D D_IFDEF option. */  /* Variable for -D D_IFDEF option. */
 char    *ifdefname;             /* What we will print for #ifdef/#endif */  char    *ifdefname;             /* What we will print for #ifdef/#endif */
 int     inifdef;  
 /* Variables for -c and -u context option. */  /* Variables for -c and -u context option. */
 int     context;                /* lines of context to be printed */  int     context;                /* lines of context to be printed */
 /* State for exit status. */  /* State for exit status. */
 int     status;  int     status;
 int     anychange;  int     anychange;
 char    *tempfile;              /* used when comparing against std input */  
 /* Variables for diffdir. */  /* Variables for diffdir. */
 char    **diffargv;             /* option list to pass to recursive diffs */  char    **diffargv;             /* option list to pass to recursive diffs */
   
 /*  /*
  * Input file names.   * Input file names.
  * With diffdir, file1 and file2 are allocated BUFSIZ space,   * With diffdir, file1 and file2 are allocated MAXPATHLEN space,
  * and padded with a '/', and then efile0 and efile1 point after   * and padded with a '/', and then efile1 and efile2 point after
  * the '/'.   * the '/'.
  */   */
 char    *file1, *file2, *efile1, *efile2;  char    *file1, *file2, *efile1, *efile2;
 struct  stat stb1, stb2;  struct  stat stb1, stb2;
   
 const char *diff = _PATH_DIFF;  
 const char *diffh = _PATH_DIFFH;  
 const char *pr = _PATH_PR;  
   
 __dead void usage(void);  __dead void usage(void);
   

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