shithub: scc

ref: a94bf959708854d93cb82e4d73eeffa108633036
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>
#undef fgetc

int
fgetc(FILE *fp)
{
	return getc(fp);
}