shithub: scc

ref: 7726d04d20291674f962bfcb5cc494934a762ff2
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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