From: Mark Salyzyn Date: Wed, 1 Apr 2015 00:58:11 +0000 (-0700) Subject: Android: wpa_ctrl missing include for sys/stat.h X-Git-Tag: hostap_2_5~873 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0144ecb8c886edf25ff3769290760fa647dda554;p=thirdparty%2Fhostap.git Android: wpa_ctrl missing include for sys/stat.h wpa_ctrl.c gets sys/stat.h inherited from private/android_filesystem_config.h it should not rely on this in the future. The intent is to move fs_config function into libcutils and thus deprecate any need for sys/stat.h in this include file. Signed-off-by: Dmitry Shmidt --- diff --git a/src/common/wpa_ctrl.c b/src/common/wpa_ctrl.c index ccaaf1b05..82d465520 100644 --- a/src/common/wpa_ctrl.c +++ b/src/common/wpa_ctrl.c @@ -21,6 +21,7 @@ #ifdef ANDROID #include +#include #include #include "private/android_filesystem_config.h" #endif /* ANDROID */