gcc/libio/stdio/getc.c

12 lines
118 B
C
Raw Normal View History

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