diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-10-22 19:05:26 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-10-22 19:05:26 +0000 |
commit | db72d5b959d2b29025736f108994d5680fd3a71b (patch) | |
tree | 8b7998772c23007e068e5efe231bb6824f21484b /usr.bin | |
parent | 97b9bf2b91e2abaa1c4aa744622929d36f76b503 (diff) |
fix warning when compiling usr.bin/rcs
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/diff.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/cvs/diff.h b/usr.bin/cvs/diff.h index cd261370da4..52fa3775100 100644 --- a/usr.bin/cvs/diff.h +++ b/usr.bin/cvs/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.4 2005/10/22 17:32:57 joris Exp $ */ +/* $OpenBSD: diff.h,v 1.5 2005/10/22 19:05:25 joris Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -93,6 +93,10 @@ #define D_SKIPPED2 9 /* path2 was a special file */ +#if defined(RCSPROG) +struct cvs_lines; +#endif + BUF *cvs_diff3(RCSFILE *, char *, RCSNUM *, RCSNUM *); void diff_output(const char *, ...); int cvs_diffreg(const char *, const char *, BUF *out); |