9e33906858
note, wiki guide still doesn't work unless you also have vs2013 installed
12 lines
197 B
C++
12 lines
197 B
C++
#if defined(USE_SDL) && defined(_MSC_VER) && (_MSC_VER >= 1900)
|
|
|
|
#include <cstdio>
|
|
|
|
FILE _iob[] = { *stdin, *stdout, *stderr };
|
|
extern "C" FILE * __cdecl __iob_func(void)
|
|
{
|
|
return _iob;
|
|
}
|
|
|
|
#endif
|