summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/rcs.c
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-12-01 18:22:10 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-12-01 18:22:10 +0000
commitc04573a3ab276fa381fbcdfb47245ccbda2c83fa (patch)
tree59753c3c211596d76f99022b9d4b95481cb97930 /usr.bin/cvs/rcs.c
parent08db5ab5443df6d0238593d1cbf2eb583b5ef211 (diff)
rcs_findrev() is not static anymore; align protos while here;
OK joris@ niallo@.
Diffstat (limited to 'usr.bin/cvs/rcs.c')
-rw-r--r--usr.bin/cvs/rcs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c
index 6b717e425f3..a04db7a381c 100644
--- a/usr.bin/cvs/rcs.c
+++ b/usr.bin/cvs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.101 2005/11/22 11:49:02 niallo Exp $ */
+/* $OpenBSD: rcs.c,v 1.102 2005/12/01 18:22:09 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -287,7 +287,6 @@ static int rcs_strprint(const u_char *, size_t, FILE *);
static int rcs_expand_keywords(char *, struct rcs_delta *, char *, char *,
size_t, int);
-static struct rcs_delta *rcs_findrev(RCSFILE *, const RCSNUM *);
/*
* rcs_open()
@@ -1527,7 +1526,7 @@ rcs_rev_remove(RCSFILE *rf, RCSNUM *rev)
* The revision number is given in <rev>.
* Returns a pointer to the delta on success, or NULL on failure.
*/
-static struct rcs_delta*
+struct rcs_delta *
rcs_findrev(RCSFILE *rfp, const RCSNUM *rev)
{
u_int cmplen;