From 8741c4f919891316d8b236c2dd85d9430b656aca Mon Sep 17 00:00:00 2001 From: RichardBarry <3073890+RichardBarry@users.noreply.github.com> Date: Tue, 9 Aug 2022 10:37:24 -0700 Subject: [PATCH] Include string.h at the top of portable/GCC/ARM_CA9/port.c to prevent memset() generating a warning. (#430) Co-authored-by: none --- portable/GCC/ARM_CA9/port.c | 1 + 1 file changed, 1 insertion(+) diff --git a/portable/GCC/ARM_CA9/port.c b/portable/GCC/ARM_CA9/port.c index 78c8aea74..6dbccf3df 100644 --- a/portable/GCC/ARM_CA9/port.c +++ b/portable/GCC/ARM_CA9/port.c @@ -28,6 +28,7 @@ /* Standard includes. */ #include +#include /* Scheduler includes. */ #include "FreeRTOS.h"