summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diff.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-07-22 01:16:01 +0000
committermillert <millert@openbsd.org>2003-07-22 01:16:01 +0000
commit1f9aa9e07695c5317d84ab6a2883b6664348f42c (patch)
treef128e0e5097604350864fb629ce6eff1ea3b5f5f /usr.bin/diff/diff.h
parentvoid *, not caddr_t. missed in last commit. thanks Marco Peereboom (diff)
downloadwireguard-openbsd-1f9aa9e07695c5317d84ab6a2883b6664348f42c.tar.xz
wireguard-openbsd-1f9aa9e07695c5317d84ab6a2883b6664348f42c.zip
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;