shithub: scc

ref: 965aa5892485f352eb054408f435f44c24aaf456
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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