Add header file string.h required for memcpy/memset

pull/7663/head
deepikabhavnani 2018-08-06 11:16:56 -05:00
parent e36cd00e93
commit 8f2f6f43c9
2 changed files with 5 additions and 0 deletions

View File

@ -17,7 +17,9 @@
#include "HeapBlockDevice.h" #include "HeapBlockDevice.h"
#include "platform/mbed_critical.h" #include "platform/mbed_critical.h"
#include "platform/mbed_assert.h" #include "platform/mbed_assert.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
namespace mbed { namespace mbed {

View File

@ -17,7 +17,10 @@
#include "MBRBlockDevice.h" #include "MBRBlockDevice.h"
#include "platform/mbed_critical.h" #include "platform/mbed_critical.h"
#include "platform/mbed_assert.h" #include "platform/mbed_assert.h"
#include <algorithm> #include <algorithm>
#include <stdlib.h>
#include <string.h>
namespace mbed { namespace mbed {