shithub: scc

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

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

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