mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-24 19:19:57 +08:00
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);
|
||
|
}
|