diff options
| author | Scott James Remnant <keybuk@google.com> | 2015-04-02 15:22:14 -0700 |
|---|---|---|
| committer | Scott James Remnant <keybuk@google.com> | 2015-04-02 15:22:14 -0700 |
| commit | 933926c92e1378cc76bc9c149107e670c4872d4e (patch) | |
| tree | 3799215c0e76bc312085a5bf5f9384557f2e1eba /osi/include | |
| parent | a7e698f5a9e062f62e21bc435643975c30bab846 (diff) | |
| download | android_system_bt-933926c92e1378cc76bc9c149107e670c4872d4e.tar.gz android_system_bt-933926c92e1378cc76bc9c149107e670c4872d4e.tar.bz2 android_system_bt-933926c92e1378cc76bc9c149107e670c4872d4e.zip | |
Fix missing #includes needed for glibc
Some standard library functions are used while relying on bionic headers
including the headers the functions were actually declared on. Add those
missing #includes so that bluetooth.default.so will compile on glibc.
Change-Id: Ied9f89ce5a05911fca63f6bfe1b8cc8196ab3b1c
Diffstat (limited to 'osi/include')
| -rw-r--r-- | osi/include/allocation_tracker.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/osi/include/allocation_tracker.h b/osi/include/allocation_tracker.h index fb9781b55..b9fa59405 100644 --- a/osi/include/allocation_tracker.h +++ b/osi/include/allocation_tracker.h @@ -20,6 +20,7 @@ #include <stdbool.h> #include <stddef.h> +#include <stdint.h> typedef struct allocation_tracker_t allocation_tracker_t; typedef uint8_t allocator_id_t; |
