shithub: scc

ref: 371b267234d3eed3c3db5f52bab1a89c83cb08d3
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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