shithub: scc

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

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

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