shithub: scc

ref: 5310badb8f39560835f0db678d6784217c92766f
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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