diff options
| author | 2014-07-19 00:54:52 +0000 | |
|---|---|---|
| committer | 2014-07-17 22:34:48 +0000 | |
| commit | 76cbbc07ea98d2a2f75173fe7ba5444d44ebd99f (patch) | |
| tree | 05d4d3a610c3671761ba5bfdf3a05ad85e96f583 | |
| parent | 4dd0d8008a84d1b8e5d9cae2a3491fa92b79c388 (diff) | |
| parent | 1e4ee9afd2de12af98dbf476b73e2d43f605384c (diff) | |
Merge "Always #include <sys/...>, not <linux/...>."
| -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> |