diff options
| author | 2014-07-18 17:54:09 -0700 | |
|---|---|---|
| committer | 2014-07-18 17:54:09 -0700 | |
| commit | 1e4ee9afd2de12af98dbf476b73e2d43f605384c (patch) | |
| tree | 05d4d3a610c3671761ba5bfdf3a05ad85e96f583 | |
| parent | ec535c5ba515f58791aa5044ba116d35a10a188e (diff) | |
Always #include <sys/...>, not <linux/...>.
Change-Id: I9a3f574e0dd1d3ba39312254513b8b193b610c09
| -rw-r--r-- | cmds/dumpstate/dumpstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c index b634719626..c6a2a0d9ad 100644 --- a/cmds/dumpstate/dumpstate.c +++ b/cmds/dumpstate/dumpstate.c @@ -26,7 +26,7 @@ #include <sys/wait.h> #include <unistd.h> #include <sys/capability.h> -#include <linux/prctl.h> +#include <sys/prctl.h> #include <cutils/properties.h> |