gcc/libio/stdio/getc.c

12 lines
118 B
C

#include "libioP.h"
#include "stdio.h"
#undef getc
int
getc(stream)
FILE *stream;
{
return _IO_getc (stream);
}