svn commit: r236858 - head/sys/kern
Pawel Jakub Dawidek
pjd at FreeBSD.org
Sun Jun 10 20:22:11 UTC 2012
Author: pjd
Date: Sun Jun 10 20:22:10 2012
New Revision: 236858
URL: http://svn.freebsd.org/changeset/base/236858
Log:
Style: move opt_*.h includes in the proper place.
MFC after: 1 month
Modified:
head/sys/kern/sys_capability.c
Modified: head/sys/kern/sys_capability.c
==============================================================================
--- head/sys/kern/sys_capability.c Sun Jun 10 19:44:08 2012 (r236857)
+++ head/sys/kern/sys_capability.c Sun Jun 10 20:22:10 2012 (r236858)
@@ -51,12 +51,12 @@
* anonymous, rather than named, POSIX shared memory objects.
*/
-#include "opt_capsicum.h"
-#include "opt_ktrace.h"
-
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include "opt_capsicum.h"
+#include "opt_ktrace.h"
+
#include <sys/param.h>
#include <sys/capability.h>
#include <sys/file.h>
More information about the svn-src-head
mailing list