summaryrefslogtreecommitdiffstats
path: root/osi/src/semaphore.c
diff options
context:
space:
mode:
authorSharvil Nanavati <sharvil@google.com>2015-03-12 15:42:50 -0700
committerAndre Eisenbach <eisenbach@google.com>2015-03-16 16:51:49 -0700
commit0f9b91e150e153229235c163861198e23600e636 (patch)
tree90b99744d8f59918377ab936e1961347322730d4 /osi/src/semaphore.c
parenta2eb9810ceae3f38d281393f7c56422f4ef89374 (diff)
downloadandroid_system_bt-0f9b91e150e153229235c163861198e23600e636.tar.gz
android_system_bt-0f9b91e150e153229235c163861198e23600e636.tar.bz2
android_system_bt-0f9b91e150e153229235c163861198e23600e636.zip
Use fully qualified path for OSI includes.
Diffstat (limited to 'osi/src/semaphore.c')
-rw-r--r--osi/src/semaphore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/osi/src/semaphore.c b/osi/src/semaphore.c
index e1fa8a42c..4c45b2e5e 100644
--- a/osi/src/semaphore.c
+++ b/osi/src/semaphore.c
@@ -24,10 +24,10 @@
#include <string.h>
#include <sys/eventfd.h>
-#include "allocator.h"
-#include "osi.h"
+#include "osi/include/allocator.h"
+#include "osi/include/osi.h"
#include "osi/include/log.h"
-#include "semaphore.h"
+#include "osi/include/semaphore.h"
#if !defined(EFD_SEMAPHORE)
# define EFD_SEMAPHORE (1 << 0)