mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 17:35:05 +08:00
11 lines
116 B
C
11 lines
116 B
C
|
#include "libioP.h"
|
||
|
#include "stdio.h"
|
||
|
#undef putchar
|
||
|
|
||
|
int
|
||
|
putchar(c)
|
||
|
int c;
|
||
|
{
|
||
|
return _IO_putc(c, stdout);
|
||
|
}
|