summaryrefslogtreecommitdiffstats
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 18:19:54 -0700
commitd2a049220a8299ab19a96d6dcc12b7034da28d28 (patch)
tree001f6ed6770b445e176721ddf1a75cb089407435
parent119b765a053f650b4b47256245ce836f8c403d7f (diff)
downloadframeworks_native-d2a049220a8299ab19a96d6dcc12b7034da28d28.zip
frameworks_native-d2a049220a8299ab19a96d6dcc12b7034da28d28.tar.gz
frameworks_native-d2a049220a8299ab19a96d6dcc12b7034da28d28.tar.bz2
Always #include <sys/...>, not <linux/...>.
(cherry picked from commit 1e4ee9afd2de12af98dbf476b73e2d43f605384c) Change-Id: Ie005774484f98bb33c8f867cddb778ac04a1d4ea
-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 36d11fb..ff01da5 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>