shithub: scc

ref: 813c707f576ae9ab4209c5b155fc348571465313
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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