summaryrefslogtreecommitdiff
path: root/usr.bin/diff/diff.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-07-22 01:16:02 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-07-22 01:16:02 +0000
commitef7f5be681ef9814382af82c117b9483f9c717ea (patch)
tree8ec0578a7e66ca0937ddf5d7eba1199ebfe58723 /usr.bin/diff/diff.h
parentbcfb04daae23e7367c282ce19186bd8666214a1d (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.h6
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;