summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/cvs.c
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2007-02-22 06:42:11 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2007-02-22 06:42:11 +0000
commitfdb3a045215ae0f4100b4c7708a5670099b83442 (patch)
tree47294792b1c58aa77639fa5ae9e7bbbc31456090 /usr.bin/cvs/cvs.c
parentf33dff9ae83d109c167ed3dc9fde1970dd10bae5 (diff)
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r--usr.bin/cvs/cvs.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c
index 9816851bf79..b0dee94ca4c 100644
--- a/usr.bin/cvs/cvs.c
+++ b/usr.bin/cvs/cvs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.c,v 1.116 2007/02/17 18:23:43 xsa Exp $ */
+/* $OpenBSD: cvs.c,v 1.117 2007/02/22 06:42:09 otto Exp $ */
/*
* Copyright (c) 2006, 2007 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -25,12 +25,16 @@
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "includes.h"
+#include <sys/stat.h>
+
+#include <ctype.h>
+#include <errno.h>
+#include <pwd.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
#include "cvs.h"
-#include "config.h"
-#include "log.h"
-#include "file.h"
#include "remote.h"
extern char *__progname;