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:
Veerendranath Jakkam
2018-05-18 18:41:15 +05:30
parent 20f62e8554
commit c613ebbc1c
3 changed files with 14 additions and 10 deletions

View File

@@ -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; }}