gcc/libio/stdio/putchar.c
Jason Merrill 6599da043e Initial revision
From-SVN: r14877
1997-08-21 18:57:35 -04:00

11 lines
116 B
C

#include "libioP.h"
#include "stdio.h"
#undef putchar
int
putchar(c)
int c;
{
return _IO_putc(c, stdout);
}