shithub: scc

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

View raw version

#include <stdio.h>
#undef fgetc

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