diff options
author | 2007-02-22 06:42:09 +0000 | |
---|---|---|
committer | 2007-02-22 06:42:09 +0000 | |
commit | 1f8531bd251a3715e69ee45acb8dff31d6842792 (patch) | |
tree | c5a521c9d7d058092d3ef8c1144fde65eb626c41 /usr.bin/cvs/diff.c | |
parent | an unused define and an unused decl. From Mark Lumsden. (diff) | |
download | wireguard-openbsd-1f8531bd251a3715e69ee45acb8dff31d6842792.tar.xz wireguard-openbsd-1f8531bd251a3715e69ee45acb8dff31d6842792.zip |
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index 0965e0f86c9..92e6c43db52 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.117 2007/02/09 03:49:15 joris Exp $ */ +/* $OpenBSD: diff.c,v 1.118 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -15,11 +15,14 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "includes.h" +#include <sys/stat.h> + +#include <errno.h> +#include <string.h> +#include <unistd.h> #include "cvs.h" #include "diff.h" -#include "log.h" #include "remote.h" void cvs_diff_local(struct cvs_file *); |