diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-29 18:32:47 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-29 18:32:47 +0000 |
commit | be5671b89a0102c97f972e3b1f0d00fa6019fac0 (patch) | |
tree | 266a547bb7fb3d3cada035dff647f57526c0edad | |
parent | 7475046c71a594f80574a8790dc596744707d6c7 (diff) |
Don't export `cvs_root'
-rw-r--r-- | usr.bin/cvs/checkout.c | 6 | ||||
-rw-r--r-- | usr.bin/cvs/update.c | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c index 92be9c0a653..4ea52dc3c2b 100644 --- a/usr.bin/cvs/checkout.c +++ b/usr.bin/cvs/checkout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: checkout.c,v 1.3 2004/07/28 02:01:29 jfb Exp $ */ +/* $OpenBSD: checkout.c,v 1.4 2004/07/29 18:32:45 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -38,10 +38,6 @@ -extern struct cvsroot *cvs_root; - - - /* * cvs_checkout() * diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index fb76b1f6bde..1777112d1f9 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.2 2004/07/29 17:39:12 jfb Exp $ */ +/* $OpenBSD: update.c,v 1.3 2004/07/29 18:32:46 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -39,10 +39,6 @@ #include "rcs.h" #include "log.h" -extern char *__progname; - -extern struct cvsroot *cvs_root; - int cvs_update_file (CVSFILE *, void *); int cvs_update_prune (CVSFILE *, void *); |