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/diff3.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/diff3.c')
-rw-r--r-- | usr.bin/cvs/diff3.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/usr.bin/cvs/diff3.c b/usr.bin/cvs/diff3.c index 1b2c81ede28..5f573c49ddf 100644 --- a/usr.bin/cvs/diff3.c +++ b/usr.bin/cvs/diff3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff3.c,v 1.34 2007/01/31 21:07:35 xsa Exp $ */ +/* $OpenBSD: diff3.c,v 1.35 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. @@ -72,13 +72,17 @@ static const char copyright[] = #ifndef lint static const char rcsid[] = - "$OpenBSD: diff3.c,v 1.34 2007/01/31 21:07:35 xsa Exp $"; + "$OpenBSD: diff3.c,v 1.35 2007/02/22 06:42:09 otto Exp $"; #endif /* not lint */ -#include "includes.h" +#include <ctype.h> +#include <errno.h> +#include <fcntl.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include "cvs.h" -#include "log.h" #include "diff.h" /* diff3 - 3-way differential file comparison */ |