=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/rcsnum.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- src/usr.bin/cvs/rcsnum.c 2005/07/25 12:05:43 1.13 +++ src/usr.bin/cvs/rcsnum.c 2005/07/25 12:13:08 1.14 @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsnum.c,v 1.13 2005/07/25 12:05:43 xsa Exp $ */ +/* $OpenBSD: rcsnum.c,v 1.14 2005/07/25 12:13:08 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. @@ -35,7 +35,7 @@ #include "rcs.h" -static int rcsnum_setsize (RCSNUM *, u_int); +static int rcsnum_setsize(RCSNUM *, u_int); /* @@ -44,7 +44,7 @@ * Allocate an RCS number structure and return a pointer to it on success, * or NULL on failure. */ -RCSNUM* +RCSNUM * rcsnum_alloc(void) { RCSNUM *rnp; @@ -65,7 +65,7 @@ * * Parse a string specifying an RCS number and return the corresponding RCSNUM. */ -RCSNUM* +RCSNUM * rcsnum_parse(const char *str) { char *ep; @@ -267,7 +267,7 @@ * Increment the revision number specified in . * Returns a pointer to the on success, or NULL on failure. */ -RCSNUM* +RCSNUM * rcsnum_inc(RCSNUM *num) { if (num->rn_id[num->rn_len - 1] == RCSNUM_MAXNUM) @@ -283,7 +283,7 @@ * If is a branch revision, the returned value will be the same * number as the argument. */ -RCSNUM* +RCSNUM * rcsnum_revtobr(const RCSNUM *num) { RCSNUM *brnum; @@ -308,7 +308,7 @@ * Retrieve the initial revision number associated with the branch number . * If is a revision number, an error will be returned. */ -RCSNUM* +RCSNUM * rcsnum_brtorev(const RCSNUM *brnum) { RCSNUM *num;