shithub: scc

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

View raw version
#include <stdio.h>

#undef fgetc

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