update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdio / fputchar.c
1 #include <msvcrt/stdio.h>
2 #include <msvcrt/conio.h>
3 #include <msvcrt/wchar.h>
4
5 /*
6  * @implemented
7  */
8 int     _fputchar (int c)
9 {
10         return _putch(c);
11 }
12
13 /*
14  * @unimplemented
15  */
16 int     _fputwchar (wchar_t c)
17 {
18         //return _putch(c);
19         return 0;
20 }
21