summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-01-29 20:40:25 -0800
committerElliott Hughes <enh@google.com>2015-01-29 20:40:25 -0800
commitda9711487f2b60f840aacd6c0a91fc083c3e741f (patch)
treecbe8c36891f64925e858ca65572aef8935b5fd73
parent61331337c05cde410665e6a533a338b867fad45c (diff)
downloadbluedroid-da9711487f2b60f840aacd6c0a91fc083c3e741f.tar.gz
Add missing <string.h> includes.
Change-Id: Iebebb21a2fd04603e0170d7c3a9f6d9552f39c88
-rw-r--r--hci/src/hci_h4.c1
-rw-r--r--hci/src/lpm.c1
-rw-r--r--hci/src/userial.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/hci/src/hci_h4.c b/hci/src/hci_h4.c
index ba6e2a2..b41ad53 100644
--- a/hci/src/hci_h4.c
+++ b/hci/src/hci_h4.c
@@ -28,6 +28,7 @@
#include <utils/Log.h>
#include <stdlib.h>
+#include <string.h>
#include <fcntl.h>
#include "bt_hci_bdroid.h"
diff --git a/hci/src/lpm.c b/hci/src/lpm.c
index 71023ba..28e0cfa 100644
--- a/hci/src/lpm.c
+++ b/hci/src/lpm.c
@@ -28,6 +28,7 @@
#include <utils/Log.h>
#include <signal.h>
+#include <string.h>
#include <time.h>
#include "bt_hci_bdroid.h"
#include "bt_vendor_lib.h"
diff --git a/hci/src/userial.c b/hci/src/userial.c
index e3f3557..7d892f9 100644
--- a/hci/src/userial.c
+++ b/hci/src/userial.c
@@ -29,6 +29,7 @@
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
+#include <memory.h>
#include <pthread.h>
#include <stdio.h>
#include <sys/eventfd.h>