shithub: scc

ref: 0088b2b37951157ee736e051c6479f864d552589
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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