summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-01-30 04:55:17 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-30 04:55:17 +0000
commitc83aa65214a930e3b80e7a2c53f78d79e6e28640 (patch)
tree9a372756d51ca0bf62be7040a564529b410105cf
parentd78846532fd66d05aa632b55264655b6481c8ac8 (diff)
parenta51404cfa0fc6ffb504e76874be32977014c647f (diff)
downloadbluedroid-c83aa65214a930e3b80e7a2c53f78d79e6e28640.tar.gz
am a51404cf: Merge "Add missing <string.h> includes."
* commit 'a51404cfa0fc6ffb504e76874be32977014c647f': 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>