From 8af0caf41dccf2490efcef22766b9ba3d8768a35 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Mon, 13 Sep 2021 16:30:12 -0700 Subject: [PATCH] Fix idmap2 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: If8829cebb0c62b539d7a336b75cf106755588cdd Merged-In: If8829cebb0c62b539d7a336b75cf106755588cdd --- cmds/idmap2/include/idmap2/FileUtils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmds/idmap2/include/idmap2/FileUtils.h b/cmds/idmap2/include/idmap2/FileUtils.h index c4e0e1fd8ef09..8fcaeb1f6b871 100644 --- a/cmds/idmap2/include/idmap2/FileUtils.h +++ b/cmds/idmap2/include/idmap2/FileUtils.h @@ -17,6 +17,8 @@ #ifndef IDMAP2_INCLUDE_IDMAP2_FILEUTILS_H_ #define IDMAP2_INCLUDE_IDMAP2_FILEUTILS_H_ +#include + #include namespace android::idmap2::utils {