shithub: scc

ref: 93e952103c3fc01315d95cab32530624d18089ce
dir: /lib/c/fgetc.c/

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

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