abe1f92ca5a3c00d5b9051ec389d4c82afbc2067
[reactos.git] / reactos / lib / crtdll / old cruft / 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