Home
last modified time | relevance | path

Searched hist:"410 c925ab31693dc74d654ff9167c8eed3ec5a62" (Results 1 – 1 of 1) sorted by relevance

/rk3399_ARM-atf/lib/libc/
H A Dsnprintf.c410c925ab31693dc74d654ff9167c8eed3ec5a62 Thu Jan 27 17:47:55 UTC 2022 Andre Przywara <andre.przywara@arm.com> fix(libc): snprintf: include stdint.h

The snprintf code uses the uintptr_t type, which is defined in stdint.h.
We do not include this header explicitly, but get the definition
indirectly through some other header doing so.

However this breaks when snprintf is compiled in isolation (for instance
for unit-testing), so let's add this #include to make things right.

Change-Id: I1299767ee482f5cf1af30c4df2e8f7e596969b41
Signed-off-by: Andre Przywara <andre.przywara@arm.com>