diff options
author | Mark Salyzyn <salyzyn@google.com> | 2015-04-01 17:33:31 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-01 17:33:31 +0000 |
commit | 222ab662051e9836b3623826fcb80ee7b5fa286f (patch) | |
tree | 6084cc9a1ac172182169bb2a87b9d0ab87f286e2 | |
parent | 6b115be0a2004d7b6faa3176e9d3a6460ee110d5 (diff) | |
parent | 1c329e856a1a7cdef6e55ee0269837a234631f75 (diff) | |
download | frameworks_base-222ab662051e9836b3623826fcb80ee7b5fa286f.zip frameworks_base-222ab662051e9836b3623826fcb80ee7b5fa286f.tar.gz frameworks_base-222ab662051e9836b3623826fcb80ee7b5fa286f.tar.bz2 |
am 1c329e85: am 855998d0: am c90a4418: Merge "idmap: scan missing include for sys/stat.h"
* commit '1c329e856a1a7cdef6e55ee0269837a234631f75':
idmap: scan missing include for sys/stat.h
-rw-r--r-- | cmds/idmap/scan.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmds/idmap/scan.cpp b/cmds/idmap/scan.cpp index 197e36b..84158d3 100644 --- a/cmds/idmap/scan.cpp +++ b/cmds/idmap/scan.cpp @@ -1,3 +1,6 @@ +#include <dirent.h> +#include <sys/stat.h> + #include "idmap.h" #include <UniquePtr.h> @@ -9,8 +12,6 @@ #include <utils/String16.h> #include <utils/String8.h> -#include <dirent.h> - #define NO_OVERLAY_TAG (-1000) using namespace android; |