shithub: scc

ref: 41390429613c2d8ffd2abae7e88d71ef9bfda362
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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