qsap: Fix VNDK compilation issues of libqsap.
- Removed "android_filesystem_config.h" references. - Added cutils header library in Android.mk. - Added required system headers explicitly. Change-Id: I1213fc40335fba7ea52c4c296b28bc66cba72701 CRs-Fixed: 2244720
This commit is contained in:
@@ -43,7 +43,6 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <private/android_filesystem_config.h>
|
||||
#include <net/if.h>
|
||||
#include <net/if_arp.h>
|
||||
#include <netlink/netlink.h>
|
||||
@@ -67,8 +66,8 @@
|
||||
|
||||
#define LOG_TAG "QCSDK"
|
||||
|
||||
#include "cutils/properties.h"
|
||||
#include "cutils/log.h"
|
||||
#include <cutils/properties.h>
|
||||
#include <cutils/log.h>
|
||||
|
||||
#define SKIP_BLANK_SPACE(x) {while(*x != '\0') { if((*x == ' ') || (*x == '\t')) x++; else break; }}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user