6599da043e
From-SVN: r14877
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);
|
|
}
|