diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-25 12:13:09 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-25 12:13:09 +0000 |
commit | e436ade81634d5e53047ed8c28192cafa562e07f (patch) | |
tree | cb985e3b2231dbdc0743cad4f3cd38c04d4168e0 /usr.bin/cvs/watch.c | |
parent | c881ebf8d29951dd1a85fc7c1e3c1236021b4697 (diff) |
KNF;
Diffstat (limited to 'usr.bin/cvs/watch.c')
-rw-r--r-- | usr.bin/cvs/watch.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/cvs/watch.c b/usr.bin/cvs/watch.c index f565e8fc012..c2adc97595b 100644 --- a/usr.bin/cvs/watch.c +++ b/usr.bin/cvs/watch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: watch.c,v 1.4 2005/07/07 14:27:57 joris Exp $ */ +/* $OpenBSD: watch.c,v 1.5 2005/07/25 12:13:08 xsa Exp $ */ /* * Copyright (c) 2005 Xavier Santolaria <xsa@openbsd.org> * All rights reserved. @@ -37,12 +37,12 @@ #include "log.h" #include "proto.h" -static int cvs_watch_init (struct cvs_cmd *, int, char **, int *); -static int cvs_watch_remote (CVSFILE *, void*); -static int cvs_watch_local (CVSFILE *, void*); +static int cvs_watch_init(struct cvs_cmd *, int, char **, int *); +static int cvs_watch_remote(CVSFILE *, void*); +static int cvs_watch_local(CVSFILE *, void*); -static int cvs_watchers_remote (CVSFILE *, void*); -static int cvs_watchers_local (CVSFILE *, void*); +static int cvs_watchers_remote(CVSFILE *, void*); +static int cvs_watchers_local(CVSFILE *, void*); struct cvs_cmd cvs_cmd_watch = { |