wifi missing include for sys/stat.h

wifi.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.

Bug: 19908228
Change-Id: Ie84477137dba47af385163decbb41b03e2aeaed4
This commit is contained in:
Mark Salyzyn 2015-04-01 07:33:14 -07:00
parent e6b2ddbc43
commit 2263e479a5

View file

@ -20,6 +20,7 @@
#include <string.h> #include <string.h>
#include <dirent.h> #include <dirent.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#include <poll.h> #include <poll.h>