diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-08-21 11:05:00 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-08-21 13:36:10 +0000 |
commit | 69fb7d2a99398a32e30f7a2387338d75aa3845b4 (patch) | |
tree | b401d61cec6ebf4c6d5bd5c460e6dc919c4d1124 | |
parent | d32d2c3fdd992d844ec89917492462ace7e797da (diff) |
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>
-rw-r--r-- | src/include/asan.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/asan.h b/src/include/asan.h index 1fe798d97f..103fcc92d2 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) |