6599da043e
From-SVN: r14877
13 lines
138 B
C
13 lines
138 B
C
#include "libioP.h"
|
|
#include "stdio.h"
|
|
|
|
#undef putc
|
|
|
|
int
|
|
putc(c, stream)
|
|
int c;
|
|
FILE *stream;
|
|
{
|
|
return _IO_putc(c, stream);
|
|
}
|