From 6bbe12f61c4f7208b428cc038170dc286c872a91 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Sat, 5 Feb 2022 20:10:03 +0100 Subject: [PATCH] tools: mkeficapsule: dont use malloc.h malloc() functions are declared via stdlib.h. Including malloc.h can lead to build errors e.g. on OS-X. Signed-off-by: Heinrich Schuchardt --- tools/mkeficapsule.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/mkeficapsule.c b/tools/mkeficapsule.c index 243fd6e..d6e3725 100644 --- a/tools/mkeficapsule.c +++ b/tools/mkeficapsule.c @@ -5,7 +5,6 @@ */ #include -#include #include #include #include -- 2.7.4