]> git.sur5r.net Git - cc65/blob - libsrc/common/putchar.c
New loadable mouse drivers
[cc65] / libsrc / common / putchar.c
1 /*
2  * putchar.c
3  *
4  * Ullrich von Bassewitz, 11.12.1998
5  */
6
7
8
9 #include <stdio.h>
10 #undef putchar          /* This is usually declared as a macro */
11
12
13
14 /*****************************************************************************/
15 /*                                   Code                                    */
16 /*****************************************************************************/
17
18
19
20 int __fastcall__ putchar (int c)
21 {
22     return fputc (c, stdout);
23 }
24
25
26