From e34fca3e01d75552ad8d712879c3ccd6a6168584 Mon Sep 17 00:00:00 2001 From: Evan Green Date: Mon, 23 Sep 2019 11:02:41 -0700 Subject: builtin: Introduce and use inttypes.h In order to pass the right printf format specifiers for certain types that are compiled both in 32-bit EC and 64-bit host environments, standard macros PRIx64 and PRId64 must be introduced. These specify the correct printf format specifier in the given compilation environment for printing a 64-bit value. On the host, inttypes.h already exists. Add an inttypes.h for the EC codebase so that these macros can be used where they're needed. BUG=chromium:984041 TEST=make -j buildall BRANCH=none Change-Id: I76e3bdc88aef7da6e5234d5b86b595f7138ea9a1 Signed-off-by: Evan Green Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1819642 Reviewed-by: caveh jalali Reviewed-by: Jack Rosenthal --- include/common.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/common.h') diff --git a/include/common.h b/include/common.h index 7bf4b39215..ee95bf5f15 100644 --- a/include/common.h +++ b/include/common.h @@ -9,6 +9,7 @@ #define __CROS_EC_COMMON_H #include +#include #include "compile_time_macros.h" /* -- cgit v1.2.1