summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-07-18 17:54:09 -0700
committerElliott Hughes <enh@google.com>2014-07-18 17:54:09 -0700
commit1e4ee9afd2de12af98dbf476b73e2d43f605384c (patch)
tree05d4d3a610c3671761ba5bfdf3a05ad85e96f583 /cmds
parentec535c5ba515f58791aa5044ba116d35a10a188e (diff)
downloadframeworks_native-1e4ee9afd2de12af98dbf476b73e2d43f605384c.zip
frameworks_native-1e4ee9afd2de12af98dbf476b73e2d43f605384c.tar.gz
frameworks_native-1e4ee9afd2de12af98dbf476b73e2d43f605384c.tar.bz2
Always #include <sys/...>, not <linux/...>.
Change-Id: I9a3f574e0dd1d3ba39312254513b8b193b610c09
Diffstat (limited to 'cmds')
-rw-r--r--cmds/dumpstate/dumpstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c
index b634719..c6a2a0d 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>