12 lines
177 B
C++
12 lines
177 B
C++
#if defined(_MSC_VER) && (_MSC_VER >= 1900)
|
|
|
|
#include <cstdio>
|
|
|
|
FILE _iob[] = { *stdin, *stdout, *stderr };
|
|
extern "C" FILE * __cdecl __iob_func(void)
|
|
{
|
|
return _iob;
|
|
}
|
|
|
|
#endif
|