diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-29 18:22:29 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-29 18:22:29 +0000 |
commit | 3e21ff65b973b8becc0b9ab601dbab9d0f2442d8 (patch) | |
tree | ce3da3836d1e4d5d7fe19ef131815ac7c8cb5096 /usr.bin | |
parent | d94d0e862f222c42614179f269c8064a5ab1bfaa (diff) |
Use the `CVS' define to simplify exporting symbols
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 11d24d90e0c..205672ddbf6 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.14 2004/07/29 16:52:39 jfb Exp $ */ +/* $OpenBSD: cvs.h,v 1.15 2004/07/29 18:22:28 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -363,6 +363,12 @@ typedef struct cvs_histfile { } CVSHIST; +#ifdef CVS +extern struct cvsroot *cvs_root; +#endif + + + /* client command handlers */ int cvs_add (int, char **); @@ -373,6 +379,7 @@ int cvs_getlog (int, char **); int cvs_history (int, char **); int cvs_init (int, char **); int cvs_server (int, char **); +int cvs_status (int, char **); int cvs_update (int, char **); int cvs_version (int, char **); |