diff options
author | Jiyong Park <jiyong@google.com> | 2017-09-06 12:16:25 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2017-09-06 12:17:06 +0900 |
commit | 32dde03332e9822d751ab71fc38c7bda48ec811c (patch) | |
tree | 95a7df49e1eb7bbc77c647506b86e5c5985b9086 /modules/hwcomposer/hwcomposer.cpp | |
parent | 0b2872c78458e142ee7fc441243afa7903178c27 (diff) |
Don't rely on transitively included headers
One must explicitly include what it need.
time.h for clock_gettime
float.h for FLT_MAX
string.h for memset
Bug: 37629934
Test: build
Change-Id: I1030a9c9ff3c2de4c5febabc3064d6976e9535cf
Diffstat (limited to 'modules/hwcomposer/hwcomposer.cpp')
-rw-r--r-- | modules/hwcomposer/hwcomposer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/hwcomposer/hwcomposer.cpp b/modules/hwcomposer/hwcomposer.cpp index fd4e90dd..31e362af 100644 --- a/modules/hwcomposer/hwcomposer.cpp +++ b/modules/hwcomposer/hwcomposer.cpp @@ -17,6 +17,7 @@ #include <errno.h> #include <fcntl.h> #include <malloc.h> +#include <string.h> #include <cutils/atomic.h> #include <log/log.h> |