int __cdecl putchar(int);
| 846 | |
| 847 | // int __cdecl putchar(int); |
| 848 | int __cdecl puts(const char *s) |
| 849 | { |
| 850 | TCHAR wbuf[4096]; |
| 851 | NH_A2W(s, wbuf, 4096); |
| 852 | MessageBox(NULL, wbuf, _T("stdout"), MB_OK); |
| 853 | return 0; |
| 854 | } |
| 855 | |
| 856 | FILE *__cdecl _getstdfilex(int desc) |
| 857 | { |
no outgoing calls
no test coverage detected