shithub: scc

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

View raw version

#include <stdio.h>
#undef fgetc

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