diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-13 17:53:35 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-13 17:53:35 +0000 |
commit | 5fb4511865ce165058de9249327870afc8d5bba0 (patch) | |
tree | 78bae33de00913ca322fa654494b39938420a3ae | |
parent | 786912cfc466946838179a2bf918a3cc65e70e09 (diff) |
more extern declarations for the common variables
-rw-r--r-- | usr.bin/cvs/cvs.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 4ba776e7184..97b8be02549 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.41 2004/12/21 18:47:59 jfb Exp $ */ +/* $OpenBSD: cvs.h,v 1.42 2005/01/13 17:53:34 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -235,12 +235,19 @@ typedef struct cvs_histfile { #ifdef CVS + extern char *cvs_command; extern char *cvs_editor; extern char *cvs_msg; - -extern int cvs_cmdop; -extern int cvs_nocase; +extern char *cvs_rsh; + +extern int verbosity; +extern int cvs_trace; +extern int cvs_nolog; +extern int cvs_compress; +extern int cvs_cmdop; +extern int cvs_nocase; +extern int cvs_readonly; extern CVSFILE *cvs_files; |