diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-02-27 07:59:14 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-02-27 07:59:14 +0000 |
commit | a50c6629c4b87021063cca8ee33d033693044f19 (patch) | |
tree | 9cd41a61ed2caed4fdd960c4a6f86d18750f2427 /usr.bin/rcs/diff.c | |
parent | 9f064f1ae44f3419a81d855a6c20ccf1003319b2 (diff) |
As done in OpenCVS, general includes cleanup sweep. OK otto@.
Diffstat (limited to 'usr.bin/rcs/diff.c')
-rw-r--r-- | usr.bin/rcs/diff.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/usr.bin/rcs/diff.c b/usr.bin/rcs/diff.c index 929f198164a..09d341a47a9 100644 --- a/usr.bin/rcs/diff.c +++ b/usr.bin/rcs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.11 2007/02/22 08:30:45 xsa Exp $ */ +/* $OpenBSD: diff.c,v 1.12 2007/02/27 07:59:13 xsa Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -126,7 +126,17 @@ * 6n words for files of length n. */ -#include "includes.h" +#include <sys/param.h> +#include <sys/stat.h> + +#include <ctype.h> +#include <err.h> +#include <limits.h> +#include <stdarg.h> +#include <stddef.h> +#include <stdio.h> +#include <string.h> +#include <unistd.h> #include "buf.h" #include "diff.h" |