diff options
author | John Baldwin <jhb@FreeBSD.org> | 2023-03-08 23:05:10 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2023-03-08 23:05:10 +0000 |
commit | eee4264c9fcb24e53162c86b086832492892d1f3 (patch) | |
tree | a6af807d226f4bd807687a4d3214ab0f9347d89a /sys | |
parent | cc36164a77f9a2f40e0ac103c9c3154aacca6d29 (diff) | |
download | src-eee4264c9fcb24e53162c86b086832492892d1f3.tar.gz src-eee4264c9fcb24e53162c86b086832492892d1f3.zip |
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/systm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 7664a4506b0c..333a72ba9e30 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -40,13 +40,13 @@ #ifndef _SYS_SYSTM_H_ #define _SYS_SYSTM_H_ -#include <sys/cdefs.h> -#include <machine/atomic.h> -#include <machine/cpufunc.h> +#include <sys/types.h> #include <sys/callout.h> #include <sys/kassert.h> #include <sys/queue.h> #include <sys/stdint.h> /* for people using printf mainly */ +#include <machine/atomic.h> +#include <machine/cpufunc.h> __NULLABILITY_PRAGMA_PUSH |