From 091010e9a28f39f0fc2bc255ce16fe86979b871d Mon Sep 17 00:00:00 2001 From: Naveen Kaje Date: Tue, 11 Dec 2018 14:59:36 -0600 Subject: [PATCH] mbed_fault_handler: fix build warning Fixes warning BUILD\NRF52840_DK\GCC_ARM\mbed-os\cmsis\TARGET_CORTEX_M\mbed_fault_handler.o .\mbed-os\cmsis\TARGET_CORTEX_M\mbed_fault_handler.c [Warning] mbed_fault_handler.c@149,5: implicit declaration of function 'memcpy' [-Wimplicit-function-declaration] --- cmsis/TARGET_CORTEX_M/mbed_fault_handler.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cmsis/TARGET_CORTEX_M/mbed_fault_handler.c b/cmsis/TARGET_CORTEX_M/mbed_fault_handler.c index 62fa90ff07c..5c0f20b21ac 100644 --- a/cmsis/TARGET_CORTEX_M/mbed_fault_handler.c +++ b/cmsis/TARGET_CORTEX_M/mbed_fault_handler.c @@ -18,6 +18,7 @@ #define __STDC_FORMAT_MACROS #endif #include +#include #include "device.h" #include "mbed_error.h"