shithub: scc

ref: 3e8757f4125a99765fdd625b6a31d2236a93c4cf
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>
#undef fgetc

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