commit | 81f5d3ebef2c3789737bf718fc2a2cdd7b9e8b33 | [log] [tgz] |
---|---|---|
author | Tom Cherry <tomcherry@google.com> | Thu Jun 22 12:53:17 2017 -0700 |
committer | Tom Cherry <tomcherry@google.com> | Fri Jun 23 13:21:20 2017 -0700 |
tree | 994dda570ae23534eb95913a17747e2f90f4ad7b | |
parent | 84c2eebbdd889fdb7208069c48ba06a2b5a71bf4 [diff] [blame] |
init: create android::init:: namespace With some small fixups along the way Test: Boot bullhead Test: init unit tests Change-Id: I7beaa473cfa9397f845f810557d1631b4a462d6a
diff --git a/init/uevent.h b/init/uevent.h index 1095665..c4fd945 100644 --- a/init/uevent.h +++ b/init/uevent.h
@@ -19,6 +19,9 @@ #include <string> +namespace android { +namespace init { + struct Uevent { std::string action; std::string path; @@ -31,4 +34,7 @@ int minor; }; +} // namespace init +} // namespace android + #endif