shithub: scc

ref: 9751bfd656a98f47f301db6265f28937d3857590
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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