shithub: scc

ref: 08608702436b819d3022aceb2b870e3284228810
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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