Diff between ab103f9f29de2658f7917770a5c2afd876e2a8db and afdd96340a1c4d92d9ef9c87af354143fa57111d

Changed Files

File Additions Deletions Status
emulator/amp.c +2 -2 modified
emulator/b1ee.c +2 -2 modified
emulator/bthost.c +1 -1 modified
emulator/hciemu.c +2 -2 modified
emulator/le.c +2 -2 modified
emulator/serial.c +2 -2 modified
emulator/server.c +2 -2 modified
emulator/smp.c +2 -2 modified
emulator/vhci.c +2 -2 modified

Full Patch

diff --git a/emulator/amp.c b/emulator/amp.c
index 8e10c99..c5c6b81 100644
--- a/emulator/amp.c
+++ b/emulator/amp.c
@@ -33,8 +33,8 @@
 #include <sys/socket.h>
 #include <sys/un.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/util.h"
 #include "src/shared/mainloop.h"
diff --git a/emulator/b1ee.c b/emulator/b1ee.c
index 1cb47d6..1fe4684 100644
--- a/emulator/b1ee.c
+++ b/emulator/b1ee.c
@@ -36,8 +36,8 @@
 #include <netdb.h>
 #include <arpa/inet.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/mainloop.h"
 
diff --git a/emulator/bthost.c b/emulator/bthost.c
index 5e83e14..86f1e56 100644
--- a/emulator/bthost.c
+++ b/emulator/bthost.c
@@ -33,7 +33,7 @@
 #include <endian.h>
 #include <stdbool.h>
 
-#include "bluetooth/bluetooth.h"
+#include "lib/bluetooth.h"
 
 #include "src/shared/util.h"
 #include "monitor/bt.h"
diff --git a/emulator/hciemu.c b/emulator/hciemu.c
index c5bfa77..fe2f662 100644
--- a/emulator/hciemu.c
+++ b/emulator/hciemu.c
@@ -36,8 +36,8 @@
 
 #include <glib.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "monitor/bt.h"
 #include "emulator/btdev.h"
diff --git a/emulator/le.c b/emulator/le.c
index 2a8fe46..755c6ae 100644
--- a/emulator/le.c
+++ b/emulator/le.c
@@ -33,8 +33,8 @@
 #include <sys/socket.h>
 #include <sys/un.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/util.h"
 #include "src/shared/crypto.h"
diff --git a/emulator/serial.c b/emulator/serial.c
index 844d85c..f404b15 100644
--- a/emulator/serial.c
+++ b/emulator/serial.c
@@ -37,8 +37,8 @@
 #include <sys/epoll.h>
 #include <sys/uio.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/mainloop.h"
 #include "btdev.h"
diff --git a/emulator/server.c b/emulator/server.c
index bdd481c..76998d9 100644
--- a/emulator/server.c
+++ b/emulator/server.c
@@ -39,8 +39,8 @@
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/mainloop.h"
 #include "btdev.h"
diff --git a/emulator/smp.c b/emulator/smp.c
index c893aba..b6c5c79 100644
--- a/emulator/smp.c
+++ b/emulator/smp.c
@@ -35,8 +35,8 @@
 #include <stdbool.h>
 #include <sys/socket.h>
 
-#include "bluetooth/bluetooth.h"
-#include "bluetooth/hci.h"
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/util.h"
 #include "src/shared/crypto.h"
diff --git a/emulator/vhci.c b/emulator/vhci.c
index b32b1e6..0001a4b 100644
--- a/emulator/vhci.c
+++ b/emulator/vhci.c
@@ -33,8 +33,8 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
+#include "lib/bluetooth.h"
+#include "lib/hci.h"
 
 #include "src/shared/mainloop.h"
 #include "monitor/bt.h"