summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2005-09-05 19:25:01 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2005-09-05 19:25:01 +0000
commit731ce31b5e8927582379e4784d1f82336529a595 (patch)
tree1c132409b9a8e07da37a9c369d72b10c556cd23c /usr.bin
parent316ec176f438fcc7264556e930291769a8af00ae (diff)
style;
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cvs/rcs.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c
index 2906624e7bc..de522b8e4a4 100644
--- a/usr.bin/cvs/rcs.c
+++ b/usr.bin/cvs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.59 2005/08/14 19:49:18 xsa Exp $ */
+/* $OpenBSD: rcs.c,v 1.60 2005/09/05 19:25:00 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -297,7 +297,7 @@ static void rcs_freefoo(struct rcs_foo *);
* fail.
* Returns a handle to the opened file on success, or NULL on failure.
*/
-RCSFILE*
+RCSFILE *
rcs_open(const char *path, int flags, ...)
{
int ret;
@@ -538,7 +538,7 @@ rcs_write(RCSFILE *rfp)
*
* Retrieve the revision number of the head revision for the RCS file <file>.
*/
-const RCSNUM*
+const RCSNUM *
rcs_head_get(RCSFILE *file)
{
return (file->rf_head);
@@ -576,7 +576,7 @@ rcs_head_set(RCSFILE *file, const RCSNUM *rev)
* Returns the number on success. If NULL is returned, then there is no
* default branch for this file.
*/
-const RCSNUM*
+const RCSNUM *
rcs_branch_get(RCSFILE *file)
{
return (file->rf_branch);
@@ -771,7 +771,7 @@ rcs_sym_remove(RCSFILE *file, const char *sym)
* should be freed by the caller once they are done with it.
* Returns the RCSNUM on success, or NULL on failure.
*/
-RCSNUM*
+RCSNUM *
rcs_sym_getrev(RCSFILE *file, const char *sym)
{
RCSNUM *num;
@@ -1028,7 +1028,7 @@ rcs_comment_set(RCSFILE *file, const char *comment)
* Retrieve the revision number corresponding to the tag <tag> for the RCS
* file <file>.
*/
-RCSNUM*
+RCSNUM *
rcs_tag_resolve(RCSFILE *file, const char *tag)
{
RCSNUM *num;