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/client.c | |
parent | f33dff9ae83d109c167ed3dc9fde1970dd10bae5 (diff) |
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/client.c')
-rw-r--r-- | usr.bin/cvs/client.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index e5bab2ac8c5..6334b347c24 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.58 2007/02/17 18:23:43 xsa Exp $ */ +/* $OpenBSD: client.c,v 1.59 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -15,11 +15,20 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "includes.h" +#include <sys/param.h> +#include <sys/dirent.h> +#include <sys/stat.h> + +#include <errno.h> +#include <fcntl.h> +#include <libgen.h> +#include <limits.h> +#include <pwd.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include "cvs.h" -#include "log.h" -#include "diff.h" #include "remote.h" struct cvs_req cvs_requests[] = { |