git: f0600c41e754 - main - MAC/do: Sort header inclusions
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 16 Dec 2024 14:45:36 UTC
The branch main has been updated by olce:
URL: https://cgit.FreeBSD.org/src/commit/?id=f0600c41e754f32b388af804fb542b0f0ea89dee
commit f0600c41e754f32b388af804fb542b0f0ea89dee
Author: Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2024-11-25 14:46:41 +0000
Commit: Olivier Certner <olce@FreeBSD.org>
CommitDate: 2024-12-16 14:42:32 +0000
MAC/do: Sort header inclusions
In accordance with style(9).
Reviewed by: bapt, emaste
Approved by: markj (mentor)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D47771
---
sys/security/mac_do/mac_do.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/security/mac_do/mac_do.c b/sys/security/mac_do/mac_do.c
index 1aad37f549bc..e72ffed2ff04 100644
--- a/sys/security/mac_do/mac_do.c
+++ b/sys/security/mac_do/mac_do.c
@@ -5,10 +5,11 @@
*/
#include <sys/param.h>
-#include <sys/malloc.h>
+#include <sys/systm.h>
#include <sys/jail.h>
#include <sys/kernel.h>
#include <sys/lock.h>
+#include <sys/malloc.h>
#include <sys/module.h>
#include <sys/mount.h>
#include <sys/mutex.h>
@@ -17,7 +18,6 @@
#include <sys/socket.h>
#include <sys/sx.h>
#include <sys/sysctl.h>
-#include <sys/systm.h>
#include <sys/ucred.h>
#include <sys/vnode.h>