Android aupport

This commit is contained in:
Vitor Santos Costa
2016-11-11 01:23:34 -06:00
parent 51359cb175
commit c49165a7af
12 changed files with 81 additions and 95 deletions

View File

@@ -917,7 +917,7 @@ static unsigned char *concat(int n, void *sv[] USES_REGS) {
buf = Malloc(room + 1);
buf0 = buf;
for (i = 0; i < n; i++) {
#if _WIN32
#if _WIN32 || defined( __ANDROID__ )
strcpy(buf, sv[i]);
buf = (char*)buf + strlen(buf);
#else