Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44658 )
Change subject: src/include/asan.h: include stdint.h ......................................................................
src/include/asan.h: include stdint.h
It's required because the header uses uintptr_t, defined there.
Change-Id: Ibefe96c8d502b6d71ba92bd04f543886010fde22 Signed-off-by: Patrick Georgi patrick@georgi.software --- M src/include/asan.h 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/44658/1
diff --git a/src/include/asan.h b/src/include/asan.h index 1fe798d..ae9f1df 100644 --- a/src/include/asan.h +++ b/src/include/asan.h @@ -3,6 +3,8 @@ #ifndef __ASAN_H #define __ASAN_H
+#include <stdint.h> + #define ASAN_SHADOW_SCALE_SHIFT 3
#define ASAN_SHADOW_SCALE_SIZE (1UL << ASAN_SHADOW_SCALE_SHIFT)