diff options
| author | Olivier Certner <olce@FreeBSD.org> | 2024-11-25 14:46:41 +0000 |
|---|---|---|
| committer | Olivier Certner <olce@FreeBSD.org> | 2025-04-03 19:30:55 +0000 |
| commit | ea3d86ea5774450581f58e4cbdb45530f120b05a (patch) | |
| tree | 77a0c6a59509d0451d291c874db5756b1be71901 | |
| parent | 4b4bd20e17e0cc57a085f96d5a2b73f2e631e1b5 (diff) | |
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
(cherry picked from commit f0600c41e754f32b388af804fb542b0f0ea89dee)
| -rw-r--r-- | sys/security/mac_do/mac_do.c | 4 |
1 files 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> |
