The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=de060b6851a4c96defaa5dde6a1b6e7468486c8c
commit de060b6851a4c96defaa5dde6a1b6e7468486c8c Author: Warner Losh <[email protected]> AuthorDate: 2025-11-17 00:16:44 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2025-11-17 00:16:44 +0000 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 --- sys/sys/efi.h | 1 + 1 file changed, 1 insertion(+) 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>
