diff options
author | 2004-07-14 00:46:48 +0000 | |
---|---|---|
committer | 2004-07-14 00:46:48 +0000 | |
commit | 7ac0cf5703150466704391d2cd917f4ca74a346a (patch) | |
tree | 220fac4c957cbaf859ae61009cb542d80bb86855 | |
parent | sync (diff) | |
download | wireguard-openbsd-7ac0cf5703150466704391d2cd917f4ca74a346a.tar.xz wireguard-openbsd-7ac0cf5703150466704391d2cd917f4ca74a346a.zip |
* document cvs_init() a bit
-rw-r--r-- | usr.bin/cvs/init.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/cvs/init.c b/usr.bin/cvs/init.c index 11e116e8b28..48232a588d5 100644 --- a/usr.bin/cvs/init.c +++ b/usr.bin/cvs/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.1.1.1 2004/07/13 22:02:40 jfb Exp $ */ +/* $OpenBSD: init.c,v 1.2 2004/07/14 00:46:48 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -72,7 +72,13 @@ struct cvsroot_file { - +/* + * cvs_init() + * + * Handler for the `cvs init' command which is used to initialize a CVS + * repository. + * Returns 0 on success, or the appropriate exit status on failure. + */ int cvs_init(int argc, char **argv) |