diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2026-05-12 17:46:17 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2026-05-12 20:05:18 +0000 |
| commit | 35a36d4a54df244e93bf280345426a600e394a90 (patch) | |
| tree | da52f7a4ff6c21298469e1c421d78c0ddc76790a | |
| parent | 3b16e96b005c723717aa6a4ebc48000354e64fa1 (diff) | |
mdo: Avoid relying on header pollution
The uses of PAGE_SIZE and roundup2() require param.h.
MFC after: 1 week
| -rw-r--r-- | usr.bin/mdo/mdo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mdo/mdo.c b/usr.bin/mdo/mdo.c index 879423bc0128..e72f28b237e7 100644 --- a/usr.bin/mdo/mdo.c +++ b/usr.bin/mdo/mdo.c @@ -10,9 +10,9 @@ * Foundation. */ +#include <sys/param.h> #include <sys/errno.h> #include <sys/limits.h> -#include <sys/types.h> #include <sys/ucred.h> #include <assert.h> |
