diff options
| author | Warner Losh <imp@FreeBSD.org> | 2025-11-17 00:16:44 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2025-11-17 00:16:44 +0000 |
| commit | de060b6851a4c96defaa5dde6a1b6e7468486c8c (patch) | |
| tree | 757ecc9740e907dd72eebb67f0504016ee42af98 | |
| parent | 44fb9f2701c71ce6bba75810fc6b7e735ecd5868 (diff) | |
efi.h: Bring in sys/types.h explicitly now
sys/types.h used to be brought in through namespace pollution, but no
more.
Fixes: 43b8edb32051
Sponsored by: Netflix
| -rw-r--r-- | sys/sys/efi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/efi.h b/sys/sys/efi.h index 830cca9c1832..b76ca4918f81 100644 --- a/sys/sys/efi.h +++ b/sys/sys/efi.h @@ -27,6 +27,7 @@ #ifndef _SYS_EFI_H_ #define _SYS_EFI_H_ +#include <sys/types.h> #include <machine/efi.h> #include <sys/efi-freebsd.h> |
