amiga-libnix3/stdio/getc.c

9 lines
73 B
C

#include <stdio.h>
#undef getc
int getc(FILE *s)
{
return fgetc(s);
}