kernel: include inttypes.h to get access to PRI defines in most spots

We need to move using the PRI* defines to use newlib as the default libc
as different arch's define various base types like {u}int32_t
differently.  To deal with that in a consistent manor we need access to
the defines in most spots for print{f,k} or logging functions.

Change-Id: Ic1fbef75cbaee211803d9aaf506056e5e31e73f3
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-04-17 10:18:41 -05:00
commit ddece1ccd4
2 changed files with 2 additions and 0 deletions

View file

@ -16,6 +16,7 @@
#if !defined(_ASMLANGUAGE)
#include <stddef.h>
#include <stdint.h>
#include <inttypes.h>
#include <limits.h>
#include <toolchain.h>
#include <sections.h>