blob: a0a972fb5396d1e869461e93f4684a523f7f665e [file] [log] [blame]
#include "libioP.h"
#include "stdio.h"
#undef putchar
int
putchar(c)
int c;
{
return _IO_putc(c, stdout);
}