ack/lang/cem/libcc/stdio/fgetc.c
1987-01-27 15:57:55 +00:00

8 lines
69 B
C

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