vsprintf() needs stdio and stdarg.

...Unless, of course, some other header like <windows.h> includes those.
This commit is contained in:
Iconoclast 2017-07-30 12:47:06 -04:00
parent 5e5e31b72b
commit e4096aefbf
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, ...)