summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/diff.c
diff options
context:
space:
mode:
authorxsa <xsa@openbsd.org>2005-05-31 08:58:47 +0000
committerxsa <xsa@openbsd.org>2005-05-31 08:58:47 +0000
commit9225b0cabd2bb268c53d45a280478779b86ee7bb (patch)
tree4fecbe866516d502169b3c4413752f842493db38 /usr.bin/cvs/diff.c
parentremove LP_ERROR log priority level and rather use LP_ERR as they are both (diff)
downloadwireguard-openbsd-9225b0cabd2bb268c53d45a280478779b86ee7bb.tar.xz
wireguard-openbsd-9225b0cabd2bb268c53d45a280478779b86ee7bb.zip
headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r--usr.bin/cvs/diff.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c
index d5b089e0c54..add3e62ea70 100644
--- a/usr.bin/cvs/diff.c
+++ b/usr.bin/cvs/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.40 2005/05/31 08:26:40 xsa Exp $ */
+/* $OpenBSD: diff.c,v 1.41 2005/05/31 08:58:47 xsa Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
* All rights reserved.
@@ -129,22 +129,22 @@
#include <sys/param.h>
#include <sys/stat.h>
+#include <ctype.h>
+#include <dirent.h>
#include <err.h>
#include <errno.h>
-#include <ctype.h>
-#include <stdio.h>
#include <fcntl.h>
#include <paths.h>
#include <regex.h>
-#include <dirent.h>
-#include <stdlib.h>
#include <stddef.h>
-#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
+#include <unistd.h>
+#include "buf.h"
#include "cvs.h"
#include "log.h"
-#include "buf.h"
#include "proto.h"