diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-02-22 06:42:11 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-02-22 06:42:11 +0000 |
commit | fdb3a045215ae0f4100b4c7708a5670099b83442 (patch) | |
tree | 47294792b1c58aa77639fa5ae9e7bbbc31456090 /usr.bin/cvs/rcs.c | |
parent | f33dff9ae83d109c167ed3dc9fde1970dd10bae5 (diff) |
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/rcs.c')
-rw-r--r-- | usr.bin/cvs/rcs.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/usr.bin/cvs/rcs.c b/usr.bin/cvs/rcs.c index 444ddea941d..b30ed4ef176 100644 --- a/usr.bin/cvs/rcs.c +++ b/usr.bin/cvs/rcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.c,v 1.209 2007/02/19 11:40:00 otto Exp $ */ +/* $OpenBSD: rcs.c,v 1.210 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -24,15 +24,19 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" +#include <sys/stat.h> + +#include <ctype.h> +#include <errno.h> +#include <libgen.h> +#include <pwd.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> -#include "buf.h" #include "cvs.h" #include "diff.h" -#include "log.h" #include "rcs.h" -#include "util.h" -#include "xmalloc.h" #define RCS_BUFSIZE 16384 #define RCS_BUFEXTSIZE 8192 |