shithub: scc

ref: 57fd86ea77bab85e988d003883dc323e2190d6b7
dir: /lib/c/fgetc.c/

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

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