shithub: scc

ref: 7180aa94fe54c91579070dcf0518c46d17060f29
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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