commit | 0f4fce149db4f45a9eb6776186c1858f8083e6f4 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Jul 18 17:45:49 2014 -0700 |
committer | Elliott Hughes <enh@google.com> | Fri Jul 18 18:19:18 2014 -0700 |
tree | 32eb94f490a5c1e6074846042396f630e5ab9a44 | |
parent | 7abb852a009dff5a3fea6e9c89730a6352fe44fd [diff] [blame] |
Always #include <sys/...>, not <linux/...>. (cherry picked from commit faf7d62bbbe8529a7558ddd72ba4a8960298e33f) Change-Id: I8c7f4b31ac828eb9cdb698e38a04256b8c3fc88c
diff --git a/src/utils/os_unix.c b/src/utils/os_unix.c index d3860ae..7498967 100644 --- a/src/utils/os_unix.c +++ b/src/utils/os_unix.c
@@ -12,7 +12,7 @@ #ifdef ANDROID #include <sys/capability.h> -#include <linux/prctl.h> +#include <sys/prctl.h> #include <private/android_filesystem_config.h> #endif /* ANDROID */