diff options
author | 2009-07-14 14:09:46 +0000 | |
---|---|---|
committer | 2009-07-14 14:09:46 +0000 | |
commit | c4f8605d417a19253335223a7d636524f8d356cc (patch) | |
tree | 1741cf0f6fa37f9a425bb1e62c1043859991b6bb | |
parent | Display driver for GTA01, (not freerunner). (diff) | |
download | wireguard-openbsd-c4f8605d417a19253335223a7d636524f8d356cc.tar.xz wireguard-openbsd-c4f8605d417a19253335223a7d636524f8d356cc.zip |
don't use both extern and static decls for a variable.
ok millert@
-rw-r--r-- | usr.bin/rcs/diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/diff.h b/usr.bin/rcs/diff.h index cb044ce1750..32fd0ed2eda 100644 --- a/usr.bin/rcs/diff.h +++ b/usr.bin/rcs/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.7 2007/07/03 00:56:23 ray Exp $ */ +/* $OpenBSD: diff.h,v 1.8 2009/07/14 14:09:46 jsg Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -118,7 +118,7 @@ int ed_patch_lines(struct rcs_lines *, struct rcs_lines *); extern int diff_context; extern int diff_format; extern int diff3_conflicts; -extern char *diff_file, *diff_ignore_pats; +extern char *diff_file; extern char diffargs[512]; /* XXX */ extern BUF *diffbuf; extern RCSNUM *diff_rev1; |