AndroidConfig.h: ensure HAVE_MALLOC_H always has a value.

Some programs (cough sqlite cough) do an improper check to see if
HAVE_MALLOC_H is defined. Instead of defining it with no value,
define it with a value so those checks pass.

Needed for bug: 20099586

Change-Id: I4c293b2c1b5f4caad85ffc1fc34ac385bab23f5c
This commit is contained in:
Nick Kralevich
2015-04-08 12:21:54 -07:00
parent 011a50e4e1
commit 9b44afb452
7 changed files with 7 additions and 7 deletions

View File

@@ -35,7 +35,7 @@
/*
* Define if we have <malloc.h> header
*/
#define HAVE_MALLOC_H
#define HAVE_MALLOC_H 1
/*
* Define if we're running on *our* linux on device or emulator.