summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diff.h
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-07-06 22:02:36 +0000
committermillert <millert@openbsd.org>2003-07-06 22:02:36 +0000
commitaeb82612035e635c909e64ee78ff8209bfb3bf4a (patch)
tree5657e05479560713723d58644c28619a4cab42a8 /usr.bin/diff/diff.h
parentknf (cedric did not do it right) (diff)
downloadwireguard-openbsd-aeb82612035e635c909e64ee78ff8209bfb3bf4a.tar.xz
wireguard-openbsd-aeb82612035e635c909e64ee78ff8209bfb3bf4a.zip
Implement -P from GNU diff (like -N but only for files that are missing
from dir1).
Diffstat (limited to 'usr.bin/diff/diff.h')
-rw-r--r--usr.bin/diff/diff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.h b/usr.bin/diff/diff.h
index 276660f5954..0264115269d 100644
--- a/usr.bin/diff/diff.h
+++ b/usr.bin/diff/diff.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.h,v 1.15 2003/07/06 20:48:59 millert Exp $ */
+/* $OpenBSD: diff.h,v 1.16 2003/07/06 22:02:36 millert Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -55,7 +55,7 @@ struct excludes {
struct excludes *next;
};
-extern int aflag, bflag, iflag, Nflag, rflag, sflag, tflag, wflag;
+extern int aflag, bflag, iflag, Nflag, Pflag, rflag, sflag, tflag, wflag;
extern char *start, *ifdefname;
extern int format, context, status, anychange;
extern char *tempfiles[], *diffargs;