project64/Source/Common/Platform.cpp

13 lines
254 B
C++
Raw Normal View History

2016-01-04 06:49:33 +00:00
#include "stdafx.h"
#ifndef _WIN32
2016-01-17 05:57:08 +00:00
int _vscprintf (const char * format, va_list pargs)
2016-01-04 06:49:33 +00:00
{
2016-01-17 05:57:08 +00:00
int retval;
va_list argcopy;
va_copy(argcopy, pargs);
retval = vsnprintf(NULL, 0, format, argcopy);
va_end(argcopy);
return retval;
2016-01-04 06:49:33 +00:00
}
#endif