diff options
author | Tom Cherry <tomcherry@google.com> | 2017-04-06 16:30:22 -0700 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2017-04-06 18:06:34 -0700 |
commit | 3f5eaae526413a29de899270714469c76dc91ec8 (patch) | |
tree | c7de454140682dad1661449b29badf31f001e345 /init/action.cpp | |
parent | b15882faab26af76f0bca30c2ce4ef4890eb4502 (diff) | |
download | core-3f5eaae526413a29de899270714469c76dc91ec8.tar.gz core-3f5eaae526413a29de899270714469c76dc91ec8.tar.bz2 core-3f5eaae526413a29de899270714469c76dc91ec8.zip |
init: more header cleanup
Remove includes of "log.h" that really want <android-base/logging.h>
Fix header include order
Remove headers included in .cpp files that their associated .h already includes
Remove some unused headers
Test: boot bullhead
Change-Id: I2b415adfe86a5c8bbe4fb1ebc53c7b0ee2253824
Diffstat (limited to 'init/action.cpp')
-rw-r--r-- | init/action.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/init/action.cpp b/init/action.cpp index 2ccf0bc53..347edb054 100644 --- a/init/action.cpp +++ b/init/action.cpp @@ -16,16 +16,11 @@ #include "action.h" -#include <errno.h> - +#include <android-base/logging.h> #include <android-base/properties.h> #include <android-base/stringprintf.h> #include <android-base/strings.h> -#include "builtins.h" -#include "error.h" -#include "init_parser.h" -#include "log.h" #include "util.h" using android::base::Join; |