summaryrefslogtreecommitdiffstats
path: root/src/include/types.h
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-05-15 21:01:02 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-05-29 20:27:18 +0000
commitb12ece98b09dd88634d93bcb41ca5c4cb9d86364 (patch)
tree520078bbb8f80a2e5715f8efcdddbda8159cf201 /src/include/types.h
parent62c0b61bed96df60967d2980d9ee4e4b3f0461b0 (diff)
downloadcoreboot-b12ece98b09dd88634d93bcb41ca5c4cb9d86364.tar.gz
coreboot-b12ece98b09dd88634d93bcb41ca5c4cb9d86364.tar.bz2
coreboot-b12ece98b09dd88634d93bcb41ca5c4cb9d86364.zip
src/{include,arch,cpu,lib}: Add missing 'include <types.h>'
<types.h> is supposed to provide <stdint.h> and <stddef.h>. So when <types.h> is included, <stdint.h> and/or <stddef.h> is removed. Change-Id: I57aead27806e307b9827fc7ee2cd663f12ee6e5e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31892 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Diffstat (limited to 'src/include/types.h')
-rw-r--r--src/include/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/types.h b/src/include/types.h
index b76c95b5bb29..d6fdc0858841 100644
--- a/src/include/types.h
+++ b/src/include/types.h
@@ -15,6 +15,8 @@
#ifndef __TYPES_H
#define __TYPES_H
+
+/* types.h is supposed to provide stdint and stddef defined in here: */
#include <stdint.h>
#include <stddef.h>