diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-22 01:16:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-22 01:16:02 +0000 |
commit | ef7f5be681ef9814382af82c117b9483f9c717ea (patch) | |
tree | 8ec0578a7e66ca0937ddf5d7eba1199ebfe58723 /usr.bin/diff/diff.h | |
parent | bcfb04daae23e7367c282ce19186bd8666214a1d (diff) |
Implement the -L and -T options from GNU diff.
Diffstat (limited to 'usr.bin/diff/diff.h')
-rw-r--r-- | usr.bin/diff/diff.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/diff/diff.h b/usr.bin/diff/diff.h index e7fc2c919fb..4ac9d45c62e 100644 --- a/usr.bin/diff/diff.h +++ b/usr.bin/diff/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.20 2003/07/21 21:57:22 millert Exp $ */ +/* $OpenBSD: diff.h,v 1.21 2003/07/22 01:16:01 millert Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -69,9 +69,9 @@ struct excludes { }; extern int aflag, bflag, iflag, lflag, Nflag, Pflag, rflag, sflag, - tflag, wflag; + tflag, Tflag, wflag; extern int format, context, status, anychange; -extern char *start, *ifdefname, *diffargs; +extern char *start, *ifdefname, *diffargs, *label; extern struct stat stb1, stb2; extern struct excludes *excludes_list; |