mirror of
https://github.com/ENSL/NS.git
synced 2024-11-30 00:10:57 +00:00
9 lines
125 B
C++
9 lines
125 B
C++
|
#include <cstdio>
|
||
|
|
||
|
FILE _iob[] = { *stdin, *stdout, *stderr };
|
||
|
|
||
|
extern "C" FILE * __cdecl __iob_func(void)
|
||
|
{
|
||
|
return _iob;
|
||
|
}
|