amiga-libnix3/stdio/fgetc.c

5 lines
69 B
C

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