Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 491c68d2 authored by Elliott Hughes's avatar Elliott Hughes Committed by Gerrit Code Review
Browse files

Merge "Fix omitted libc includes."

parents 677ab971 d4d77e07
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@
 *
 ******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/types.h>
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
#if( defined BTA_GATT_INCLUDED ) && (BTA_GATT_INCLUDED == TRUE)

#include <stdlib.h>
#include <string.h>
#include "gki.h"
#include "bd.h"
#include "bta_gatts_co.h"
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include <hardware/bluetooth.h>
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@

#include <hardware/bluetooth.h>
#include <system/audio.h>
#include <string.h>
#include "hardware/bt_av.h"

#define LOG_TAG "BTIF_AV"
+2 −0
Original line number Diff line number Diff line
@@ -24,8 +24,10 @@
 *
 *
 ***********************************************************************************/
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include <hardware/bluetooth.h>
Loading