Nico Huber has submitted this change. ( https://review.coreboot.org/c/coreboot/+/44656 )
Change subject: include/asan.h: Add missing includes ......................................................................
include/asan.h: Add missing includes
<stdint.h> and <stddef.h> are missing.
Change-Id: I10520013bb5ceb3aec0d24715f371f77e4300a70 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/44656 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Held felix-coreboot@felixheld.de Reviewed-by: Nico Huber nico.h@gmx.de Reviewed-by: Idwer Vollering vidwer@gmail.com --- M src/include/asan.h 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Idwer Vollering: Looks good to me, approved Nico Huber: Looks good to me, approved Felix Held: Looks good to me, approved
diff --git a/src/include/asan.h b/src/include/asan.h index 1fe798d..103fcc9 100644 --- a/src/include/asan.h +++ b/src/include/asan.h @@ -3,6 +3,8 @@ #ifndef __ASAN_H #define __ASAN_H
+#include <types.h> + #define ASAN_SHADOW_SCALE_SHIFT 3
#define ASAN_SHADOW_SCALE_SIZE (1UL << ASAN_SHADOW_SCALE_SHIFT)