From 9e0bcd4fc77099a064b21e789ea5724dc5de55c3 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 20 Mar 2024 10:51:24 +0100 Subject: score: Include missing header file This fixes: heap.c:268:3: warning: implicit declaration of function 'memset' --- cpukit/score/src/heap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpukit/score/src/heap.c b/cpukit/score/src/heap.c index f2d02940bd..948e48e5d5 100644 --- a/cpukit/score/src/heap.c +++ b/cpukit/score/src/heap.c @@ -45,6 +45,8 @@ #include #include +#include + #if CPU_ALIGNMENT == 0 || CPU_ALIGNMENT % 2 != 0 #error "invalid CPU_ALIGNMENT value" #endif -- cgit v1.2.3