guard the private header
[reactos.git] / reactos / lib / crtdll / old cruft / stdio / getchar.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/stdio.h>
3 #include <msvcrt/internal/file.h>
4
5 #undef getchar
6 /*
7 * @implemented
8 */
9 int
10 getchar(void)
11 {
12 return getc(stdin);
13 }