summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes2015-01-28 13:37:57 -0600
committerElliott Hughes2015-01-28 13:37:57 -0600
commita744b05984a963966cec08758ffe582d241be9d7 (patch)
treef9bde7bcbcc5f3e49cafe045b5951d3acdf27d23 /libsync
parent9c4c5a6ed934490ba0fcce661594975a6f4c2c89 (diff)
downloadplatform-system-core-a744b05984a963966cec08758ffe582d241be9d7.tar.gz
platform-system-core-a744b05984a963966cec08758ffe582d241be9d7.tar.xz
platform-system-core-a744b05984a963966cec08758ffe582d241be9d7.zip
Add missing <malloc.h> and <string.h> includes.
Change-Id: Ia41756e607663d056e7d2fdd7ecbec7e5841a913
Diffstat (limited to 'libsync')
-rw-r--r--libsync/sync.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsync/sync.c b/libsync/sync.c
index 489286673..d73bb111c 100644
--- a/libsync/sync.c
+++ b/libsync/sync.c
@@ -17,6 +17,7 @@
17 */ 17 */
18 18
19#include <fcntl.h> 19#include <fcntl.h>
20#include <malloc.h>
20#include <stdint.h> 21#include <stdint.h>
21#include <string.h> 22#include <string.h>
22 23