Browse Source

Android: Always #include <sys/...>, not <linux/...>

Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Elliott Hughes 10 years ago
parent
commit
ec5357323c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/os_unix.c

+ 1 - 1
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 */