diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-29 11:08:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-08-29 11:08:38 +0200 |
commit | f8e989c2384250d30f84651eb03673fb8d8dd096 (patch) | |
tree | 7dfdf225533b966d3f1ff3768dd77bea58a40cd4 /include/android | |
parent | 7cb6dc2652ce7e2e7d9ec7464bb1eed0d93306d7 (diff) |
fix android build
after
commit 37f9fdc11c4e95d6a34cb515a454503256a82c63
replace rtl_allocateMemory with std::malloc
just add cstdlib as in include to the compatibility header, so that
std::malloc/etc is visible
Change-Id: I3f0569434c41f5427a037a3c8d0ff75389169241
Diffstat (limited to 'include/android')
-rw-r--r-- | include/android/compatibility.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/android/compatibility.hxx b/include/android/compatibility.hxx index a60d59cfd653..f8375bfe6916 100644 --- a/include/android/compatibility.hxx +++ b/include/android/compatibility.hxx @@ -23,6 +23,7 @@ #include <stdlib.h> #include <string> #include <sstream> +#include <cstdlib> namespace std { |