shithub: scc

ref: f497555405330a595da88af8b145fa26d70d694e
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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