shithub: scc

ref: 831becab55913062b3a314c34cec38fa511bb21b
dir: /lib/c/fgetc.c/

View raw version
#include <stdio.h>
#undef fgetc

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