Reverted latest changes.
[reactos.git] / reactos / lib / msvcrt / stdio / fgetchar.c
1 #include <msvcrt/stdio.h>
2 #include <msvcrt/conio.h>
3
4 int _fgetchar(void)
5 {
6 return _getch();
7 }
8
9 int _fgetwchar(void)
10 {
11 return _getch();
12 }