aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-03-27 18:59:49 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-03-27 18:59:49 +0000
commit9118b1b0925938f284b52cc5769f81f816e4235f (patch)
tree5ec96ee87110832f78162c3a98000ee05dab1be7 /usr.sbin
parentf040054c5469cbe83e24885c7417c7c8662e7a41 (diff)
downloadsrc-9118b1b0925938f284b52cc5769f81f816e4235f.tar.gz
src-9118b1b0925938f284b52cc5769f81f816e4235f.zip
ctld: sort #includes per style(9)
- Only include sys/types.h or sys/param.h, not both. - Sort alphabetically. MFC after: 3 days Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=316050
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ctld/kernel.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.sbin/ctld/kernel.c b/usr.sbin/ctld/kernel.c
index 1eac4f3ba0ae..b646bc7795ab 100644
--- a/usr.sbin/ctld/kernel.c
+++ b/usr.sbin/ctld/kernel.c
@@ -37,15 +37,14 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/ioctl.h>
-#include <sys/types.h>
-#include <sys/stat.h>
#include <sys/param.h>
+#include <sys/capsicum.h>
+#include <sys/callout.h>
+#include <sys/ioctl.h>
#include <sys/linker.h>
#include <sys/queue.h>
-#include <sys/callout.h>
#include <sys/sbuf.h>
-#include <sys/capsicum.h>
+#include <sys/stat.h>
#include <assert.h>
#include <bsdxml.h>
#include <ctype.h>