From fe4001f87674b50e45455590b211eda705721759 Mon Sep 17 00:00:00 2001 From: Matias Devenuta <mdv@satellogic.com> Date: Mon, 28 Dec 2015 15:04:27 -0300 Subject: [PATCH] Include <stdio.h> (for sprintf) when using UNITY_FLOAT_VERBOSE --- src/unity.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unity.c b/src/unity.c index 2137cac..accbe73 100644 --- a/src/unity.c +++ b/src/unity.c @@ -285,7 +285,7 @@ void UnityPrintMask(const _U_UINT mask, const _U_UINT number) //----------------------------------------------- #ifdef UNITY_FLOAT_VERBOSE -#include <string.h> +#include <stdio.h> void UnityPrintFloat(_UF number) { char TempBuffer[32];