summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-01-30 04:43:40 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-01-30 04:43:40 +0000
commita51404cfa0fc6ffb504e76874be32977014c647f (patch)
treecbe8c36891f64925e858ca65572aef8935b5fd73
parent61331337c05cde410665e6a533a338b867fad45c (diff)
parentda9711487f2b60f840aacd6c0a91fc083c3e741f (diff)
downloadbluedroid-a51404cfa0fc6ffb504e76874be32977014c647f.tar.gz
Merge "Add missing <string.h> includes."
-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>