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/logmsg.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/logmsg.c')
-rw-r--r-- | usr.bin/cvs/logmsg.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/usr.bin/cvs/logmsg.c b/usr.bin/cvs/logmsg.c index 567f1afbcda..5af73f47bb0 100644 --- a/usr.bin/cvs/logmsg.c +++ b/usr.bin/cvs/logmsg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: logmsg.c,v 1.37 2007/01/25 22:49:39 xsa Exp $ */ +/* $OpenBSD: logmsg.c,v 1.38 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (c) 2007 Joris Vink <joris@openbsd.org> * @@ -15,12 +15,14 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "includes.h" +#include <sys/stat.h> + +#include <errno.h> +#include <fcntl.h> +#include <string.h> +#include <unistd.h> #include "cvs.h" -#include "file.h" -#include "log.h" -#include "worklist.h" #define CVS_LOGMSG_PREFIX "CVS:" #define CVS_LOGMSG_LINE \ |