The-Powder-Toy/src/SDLCompat.cpp
jacob1 9e33906858 VS 2015 compiling fixes
note, wiki guide still doesn't work unless you also have vs2013 installed
2016-10-13 22:32:52 -04:00

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