shithub: scc

ref: da6fca55d37c4e21f589dce2575b6da527382b4e
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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