aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-07-18 17:44:34 -0700
committerElliott Hughes <enh@google.com>2014-07-18 18:18:30 -0700
commit5c8263095ed5c6f5c08d049f6559abde49658d26 (patch)
treebe8822d5c6698b028b963c6d846bf5f190d39fc5
parent38cb7a7feff88d58fb4a565ba7f12cd4469af243 (diff)
downloadandroid_external_dhcpcd-5c8263095ed5c6f5c08d049f6559abde49658d26.tar.gz
android_external_dhcpcd-5c8263095ed5c6f5c08d049f6559abde49658d26.tar.bz2
android_external_dhcpcd-5c8263095ed5c6f5c08d049f6559abde49658d26.zip
Always include <sys/...>, not <linux/...>.
(cherry picked from commit d9979ed40e2c8d6f9596f0e1e9c64d6b8a0364cc) Change-Id: I355f4419b4a0cab8ad52ee9a945b56d5236fb668
-rw-r--r--dhcpcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpcd.c b/dhcpcd.c
index bac33f3..6eae970 100644
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -74,7 +74,7 @@ const char copyright[] = "Copyright (c) 2006-2012 Roy Marples";
#ifdef ANDROID
#include <sys/capability.h>
-#include <linux/prctl.h>
+#include <sys/prctl.h>
#include <cutils/properties.h>
#include <private/android_filesystem_config.h>
#endif