From 1c8533a5e524b743572fb79ce744fbe70d306886 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 25 May 2023 19:51:29 +0200 Subject: [PATCH] nbft: Add stdlib.h include calloc() and free() are defined in stdlib.h, thus include the definition. Signed-off-by: Daniel Wagner --- nbft.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nbft.c b/nbft.c index b0f8a418..2b516977 100644 --- a/nbft.c +++ b/nbft.c @@ -3,6 +3,7 @@ #include #include #include +#include #include "nvme.h" #include "nbft.h" -- 2.50.1