shithub: scc

ref: 015d343c41900f127914b3f0345353c9b0deff77
dir: /src/libc/stdio/fgetc.c/

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

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