From 0144ecb8c886edf25ff3769290760fa647dda554 Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Tue, 31 Mar 2015 17:58:11 -0700 Subject: [PATCH] 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 --- src/common/wpa_ctrl.c | 1 + 1 file changed, 1 insertion(+) 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 */