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/cvs.c | |
parent | f33dff9ae83d109c167ed3dc9fde1970dd10bae5 (diff) |
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 9816851bf79..b0dee94ca4c 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.116 2007/02/17 18:23:43 xsa Exp $ */ +/* $OpenBSD: cvs.c,v 1.117 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (c) 2006, 2007 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -25,12 +25,16 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" +#include <sys/stat.h> + +#include <ctype.h> +#include <errno.h> +#include <pwd.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include "cvs.h" -#include "config.h" -#include "log.h" -#include "file.h" #include "remote.h" extern char *__progname; |