shithub: scc

ref: 7e1d196fa2b2496328632d515a3205004a5cefaf
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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