summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/commit.c
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2007-02-22 06:42:09 +0000
committerotto <otto@openbsd.org>2007-02-22 06:42:09 +0000
commit1f8531bd251a3715e69ee45acb8dff31d6842792 (patch)
treec5a521c9d7d058092d3ef8c1144fde65eb626c41 /usr.bin/cvs/commit.c
parentan unused define and an unused decl. From Mark Lumsden. (diff)
downloadwireguard-openbsd-1f8531bd251a3715e69ee45acb8dff31d6842792.tar.xz
wireguard-openbsd-1f8531bd251a3715e69ee45acb8dff31d6842792.zip
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/commit.c')
-rw-r--r--usr.bin/cvs/commit.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c
index 7e0264cbdd3..38ee6925a6a 100644
--- a/usr.bin/cvs/commit.c
+++ b/usr.bin/cvs/commit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: commit.c,v 1.104 2007/02/09 03:49:15 joris Exp $ */
+/* $OpenBSD: commit.c,v 1.105 2007/02/22 06:42:09 otto Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
* Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -16,11 +16,15 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "includes.h"
+#include <sys/stat.h>
+
+#include <errno.h>
+#include <fcntl.h>
+#include <string.h>
+#include <unistd.h>
#include "cvs.h"
#include "diff.h"
-#include "log.h"
#include "remote.h"
void cvs_commit_local(struct cvs_file *);