diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-02-05 20:10:03 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-02-05 20:20:01 +0100 |
commit | 6bbe12f61c4f7208b428cc038170dc286c872a91 (patch) | |
tree | 7d4f13a4800ffdf132344be5ee10510fac33766d /tools/mkeficapsule.c | |
parent | e2bceb03312a8abfb4f423ac349ab5861feb3548 (diff) |
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 <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'tools/mkeficapsule.c')
-rw-r--r-- | tools/mkeficapsule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/mkeficapsule.c b/tools/mkeficapsule.c index 243fd6e483..d6e3725e5f 100644 --- a/tools/mkeficapsule.c +++ b/tools/mkeficapsule.c @@ -5,7 +5,6 @@ */ #include <getopt.h> -#include <malloc.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> |