diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2008-02-03 17:20:15 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2008-02-03 17:20:15 +0000 |
commit | 59f57d2e74e3e3c8cd9e4db61a68a644bfe31552 (patch) | |
tree | 434d6a029a9edefe972477c530bcecea73bf2ef4 /usr.bin/cvs/cvs.h | |
parent | c5bee9b77e859fa642c97be06613bd046d890c7f (diff) |
better CVSROOT/module support, includes remote support and modules
that are not aliases (-a);
OK tobias@
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r-- | usr.bin/cvs/cvs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index b50bf72191a..d65441c6fe4 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.150 2008/02/01 17:18:59 tobias Exp $ */ +/* $OpenBSD: cvs.h,v 1.151 2008/02/03 17:20:14 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -287,6 +287,9 @@ typedef struct cvs_entries { TAILQ_HEAD(, cvs_ent_line) cef_ent; } CVSENTRIES; +extern struct module_checkout *current_module; +extern char *module_repo_root; + extern struct cvs_wklhead temp_files; extern volatile sig_atomic_t sig_received; extern volatile sig_atomic_t cvs_quit; |