shithub: scc

ref: 526c098338106cfe67e236c72f2b7763d98ba13c
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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