commit | 94faff817da1f856d459fed84ad9e21ef170f80d | [log] [tgz] |
---|---|---|
author | Andre Przywara <andre.przywara@arm.com> | Thu Jan 27 17:47:55 2022 +0000 |
committer | Andre Przywara <andre.przywara@arm.com> | Thu Feb 10 16:33:32 2022 +0000 |
tree | 0040ef88be95f17f0b650cf2f01d61f16147a615 | |
parent | 933cc5d33ac838a0d10c566da9725d2555798c49 [diff] |
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>