diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-07-14 14:09:47 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-07-14 14:09:47 +0000 |
commit | cc4321283dc1c02e4203a80ca61d86b4882444f4 (patch) | |
tree | 06304eed866447954b881baa79c9ce144c4fcb8b /usr.bin/rcs | |
parent | 247d45f6a57b10df573d3b218de6916720d23345 (diff) |
don't use both extern and static decls for a variable.
ok millert@
Diffstat (limited to 'usr.bin/rcs')
-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; |