diff options
author | 2003-08-01 20:54:18 +0000 | |
---|---|---|
committer | 2003-08-01 20:54:18 +0000 | |
commit | 6681be912d2df94454242c0cd7ab8ad185c6c94a (patch) | |
tree | 1d778e2c83172c3ca1b2c3e7562c26d58627fbff /usr.bin/diff/diff.h | |
parent | - use stdbool.h instead of roll-your-own booleans (diff) | |
download | wireguard-openbsd-6681be912d2df94454242c0cd7ab8ad185c6c94a.tar.xz wireguard-openbsd-6681be912d2df94454242c0cd7ab8ad185c6c94a.zip |
anychange is no longer extern; millert ok
Diffstat (limited to 'usr.bin/diff/diff.h')
-rw-r--r-- | usr.bin/diff/diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.h b/usr.bin/diff/diff.h index fd60b13da2d..d950fe9b435 100644 --- a/usr.bin/diff/diff.h +++ b/usr.bin/diff/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.22 2003/07/27 07:39:52 otto Exp $ */ +/* $OpenBSD: diff.h,v 1.23 2003/08/01 20:54:18 deraadt Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -70,7 +70,7 @@ struct excludes { extern int aflag, bflag, dflag, iflag, lflag, Nflag, Pflag, rflag, sflag, tflag, Tflag, wflag; -extern int format, context, status, anychange; +extern int format, context, status; extern char *start, *ifdefname, *diffargs, *label; extern struct stat stb1, stb2; extern struct excludes *excludes_list; |