diff --git a/emulator/amp.c b/emulator/amp.c
index 8e10c99..c5c6b81 100644
--- a/emulator/amp.c
+++ b/emulator/amp.c
#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
#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
#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
#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
#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
#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
#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
#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
#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"