diff options
author | 2021-09-13 16:30:12 -0700 | |
---|---|---|
committer | 2021-09-15 14:59:24 -0700 | |
commit | 7cdbd68610d4af85498c656ef7cadc4d60168c45 (patch) | |
tree | 10edeb4156a80f6ef28805177ef2a47ff4ba4878 /tools/bit/util.h | |
parent | 733dd0f1e9e64493b167b9d3b771520dcfed0a13 (diff) |
Fix framworks/base compiling against musl
Add missing includes that are not transitively provided when compiling
against musl.
Bug: 190084016
Test: m USE_HOST_MUSL=true
Change-Id: Ia22c3df2e904e7a479bb636b7db22e5a0c341b98
Diffstat (limited to 'tools/bit/util.h')
-rw-r--r-- | tools/bit/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bit/util.h b/tools/bit/util.h index 7ccdab103d9a..8c66911b3c48 100644 --- a/tools/bit/util.h +++ b/tools/bit/util.h @@ -17,6 +17,8 @@ #ifndef UTIL_H #define UTIL_H +#include <sys/types.h> + #include <map> #include <string> #include <vector> |