shithub: scc

ref: 547c5c8703133571adfcba5da8adc5df512229fa
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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