Add vprintf override for android and esp-idf (#3174)

And update document.
This commit is contained in:
Enrico Loparco
2024-02-22 10:02:46 +01:00
committed by GitHub
parent 0fa0beba94
commit 8493ffa1cc
3 changed files with 19 additions and 3 deletions

View File

@ -23,7 +23,11 @@ os_printf(const char *format, ...)
va_list ap;
va_start(ap, format);
#ifndef BH_VPRINTF
ret += vprintf(format, ap);
#else
ret += BH_VPRINTF(format, ap);
#endif
va_end(ap);
return ret;
@ -32,7 +36,11 @@ os_printf(const char *format, ...)
int
os_vprintf(const char *format, va_list ap)
{
#ifndef BH_VPRINTF
return vprintf(format, ap);
#else
return BH_VPRINTF(format, ap);
#endif
}
uint64