shithub: scc

ref: aa62db1b2f210ffaa3fbc4a9a2f30b116b0240ee
dir: /lib/c/fgetc.c/

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

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