gcc/libio/stdio/putc.c

13 lines
138 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
#include "libioP.h"
#include "stdio.h"
#undef putc
int
putc(c, stream)
int c;
FILE *stream;
{
return _IO_putc(c, stream);
}