Merge pull request #1345 from cxd4/vsprintf-incl

vsprintf() needs stdio and stdarg.
This commit is contained in:
zilmar 2017-07-31 17:50:03 +10:00 committed by GitHub
commit c1e6a20fa4
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@
#include <Common/path.h>
#include <Common/Platform.h>
/* vsprintf() */
#include <stdio.h>
#include <stdarg.h>
static CLog * g_CPULogFile = NULL;
void Recompiler_Log_Message(const char * strFormat, ...)