summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2019-03-08 11:19:43 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-03-18 09:17:19 +0000
commit0f681dc5e63564aa50415723cee4b4ae831c2a30 (patch)
tree00b4d012bdbfee12e658966dd083e2c716070e32
parent51ffa7e810ee243b24848a25c8f5193910886b32 (diff)
downloadcoreboot-0f681dc5e63564aa50415723cee4b4ae831c2a30.tar.xz
include/cpu/x86/pae.h: Add missing include
Add the include for size_t. Fixes compilation error on source files that do not include it. Change-Id: Ic752886d94db18de89b8b8a5e70cf03965aeb5c3 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31922 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r--src/include/cpu/x86/pae.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/cpu/x86/pae.h b/src/include/cpu/x86/pae.h
index 51e47e1e85..7627187a52 100644
--- a/src/include/cpu/x86/pae.h
+++ b/src/include/cpu/x86/pae.h
@@ -2,6 +2,7 @@
#define CPU_X86_PAE_H
#include <stdint.h>
+#include <stddef.h>
/* Enable paging with cr3 value for page directory pointer table as well as PAE
option in cr4. */