]> git.sur5r.net Git - cc65/blob - libsrc/common/putchar.c
This commit was generated by cvs2svn to compensate for changes in r2,
[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
11 /* This is usually declared as a macro */
12 #undef putchar
13
14
15
16 int putchar (int c)
17 {
18     return fputc (c, stdout);
19 }
20
21
22