summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/file.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/file.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/file.c')
-rw-r--r--usr.bin/cvs/file.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 44325da5564..2b33fc4e083 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.82 2005/05/31 08:26:40 xsa Exp $ */
+/* $OpenBSD: file.c,v 1.83 2005/05/31 08:58:48 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -28,20 +28,20 @@
#include <sys/queue.h>
#include <sys/stat.h>
-#include <pwd.h>
+#include <dirent.h>
#include <errno.h>
-#include <stdio.h>
#include <fcntl.h>
+#include <fnmatch.h>
#include <libgen.h>
-#include <dirent.h>
+#include <pwd.h>
+#include <stdio.h>
#include <stdlib.h>
-#include <unistd.h>
#include <string.h>
-#include <fnmatch.h>
+#include <unistd.h>
#include "cvs.h"
-#include "log.h"
#include "file.h"
+#include "log.h"
#include "strtab.h"