svn commit: r316050 - head/usr.sbin/ctld
Ngie Cooper
ngie at FreeBSD.org
Mon Mar 27 18:59:50 UTC 2017
Author: ngie
Date: Mon Mar 27 18:59:49 2017
New Revision: 316050
URL: https://svnweb.freebsd.org/changeset/base/316050
Log:
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
Modified:
head/usr.sbin/ctld/kernel.c
Modified: head/usr.sbin/ctld/kernel.c
==============================================================================
--- head/usr.sbin/ctld/kernel.c Mon Mar 27 18:40:20 2017 (r316049)
+++ head/usr.sbin/ctld/kernel.c Mon Mar 27 18:59:49 2017 (r316050)
@@ -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>
More information about the svn-src-head
mailing list