aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-07-19 00:51:50 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-19 00:51:50 +0000
commit077dd4b392f3a3466c96030edbebb0dd31c37e1f (patch)
treebe8822d5c6698b028b963c6d846bf5f190d39fc5
parent580154d6b92a7d3b5f1919f363aed96e3d5d440e (diff)
parent03baf5eab896198b5060d287af3fd60d360bf48f (diff)
downloadandroid_external_dhcpcd-077dd4b392f3a3466c96030edbebb0dd31c37e1f.tar.gz
android_external_dhcpcd-077dd4b392f3a3466c96030edbebb0dd31c37e1f.tar.bz2
android_external_dhcpcd-077dd4b392f3a3466c96030edbebb0dd31c37e1f.zip
am 03baf5ea: Merge "Always include <sys/...>, not <linux/...>."
* commit '03baf5eab896198b5060d287af3fd60d360bf48f': Always include <sys/...>, not <linux/...>.
-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