mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
14 lines
164 B
C
14 lines
164 B
C
#include <msvcrt/stdio.h>
|
|
#include <msvcrt/conio.h>
|
|
|
|
|
|
int _fputchar(int c)
|
|
{
|
|
return _putch(c);
|
|
}
|
|
|
|
int _fputwchar(wchar_t c)
|
|
{
|
|
//return _putch(c);
|
|
return 0;
|
|
}
|