shithub: scc

ref: 27f24349d56b76da526aa232dbb686ad792a055a
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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