]> git.sur5r.net Git - cc65/blob - libsrc/common/getchar.c
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / common / getchar.c
1 /*
2  * getchar.c
3  *
4  * Ullrich von Bassewitz, 11.12.1998
5  */
6
7
8
9 #include <stdio.h>
10 #undef getchar          /* This is usually declared as a macro */
11
12
13
14 /*****************************************************************************/
15 /*                                   Code                                    */
16 /*****************************************************************************/
17
18
19
20 int getchar (void)
21 {
22     return fgetc (stdin);
23 }
24
25
26