shithub: scc

ref: e93bcf961af8f9764e578cd53228685296f5039f
dir: /src/libc/stdio/fgetc.c/

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

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