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

Commit b8627077 authored by Chris Manton's avatar Chris Manton
Browse files

legacy: Properly include C stdint

Bug: 197478351
Tag: #refactor
Test: gd/cert/run

Change-Id: I19e95268b0faaa2dc87cfbbcf005630c49ae07c6
parent 0ab87e46
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@
#define A2DP_AAC_H

#include <bt_target.h>
#include <stddef.h>
#include <stdint.h>

#include "a2dp_aac_constants.h"
#include "a2dp_codec_api.h"
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@

#include <hardware/bt_av.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>

#include <functional>
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@
#define A2DP_SBC_H

#include <bt_target.h>
#include <stddef.h>
#include <stdint.h>

#include "a2dp_codec_api.h"
#include "a2dp_sbc_constants.h"
+3 −0
Original line number Diff line number Diff line
@@ -24,6 +24,9 @@
#ifndef A2DP_SBC_ENCODER_H
#define A2DP_SBC_ENCODER_H

#include <stddef.h>
#include <stdint.h>

#include "a2dp_codec_api.h"

// Loads the A2DP SBC encoder.
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@
#define A2DP_VENDOR_H

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#include "a2dp_codec_api.h"
#include "stack/include/bt_hdr.h"
Loading