Skip to content

Commit 8f2f6f4

Browse files
author
deepikabhavnani
committed
Add header file string.h required for memcpy/memset
1 parent e36cd00 commit 8f2f6f4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

features/filesystem/bd/HeapBlockDevice.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
#include "HeapBlockDevice.h"
1818
#include "platform/mbed_critical.h"
1919
#include "platform/mbed_assert.h"
20+
2021
#include <stdlib.h>
22+
#include <string.h>
2123

2224
namespace mbed {
2325

features/filesystem/bd/MBRBlockDevice.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
#include "MBRBlockDevice.h"
1818
#include "platform/mbed_critical.h"
1919
#include "platform/mbed_assert.h"
20+
2021
#include <algorithm>
22+
#include <stdlib.h>
23+
#include <string.h>
2124

2225
namespace mbed {
2326

0 commit comments

Comments
 (0)