gcc/libio/stdio/getc.c

12 lines
118 B
C
Raw Normal View History

1997-08-22 06:57:35 +08:00
#include "libioP.h"
#include "stdio.h"
#undef getc
int
getc(stream)
FILE *stream;
{
return _IO_getc (stream);
}