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>
This commit is contained in:
Elyes HAOUAS 2020-08-21 11:05:00 +02:00 committed by Nico Huber
parent d32d2c3fdd
commit 69fb7d2a99
1 changed files with 2 additions and 0 deletions

View File

@ -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)