aboutsummaryrefslogtreecommitdiffstats
path: root/dhcpcd.c
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 17:44:34 -0700
commitd9979ed40e2c8d6f9596f0e1e9c64d6b8a0364cc (patch)
treeaec6125a02f4dacba9bbc9eaa5e717698aa43a52 /dhcpcd.c
parentbea91cfdd43d843cdda5ce473d84b7cfcdd566ec (diff)
downloadandroid_external_dhcpcd-d9979ed40e2c8d6f9596f0e1e9c64d6b8a0364cc.tar.gz
android_external_dhcpcd-d9979ed40e2c8d6f9596f0e1e9c64d6b8a0364cc.tar.bz2
android_external_dhcpcd-d9979ed40e2c8d6f9596f0e1e9c64d6b8a0364cc.zip
Always include <sys/...>, not <linux/...>.
Change-Id: I1d1d569d704485dd48e70da1927de95263db4fb6
Diffstat (limited to 'dhcpcd.c')
-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