shithub: scc

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

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

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