shithub: scc

ref: 3cd935a51ca42e36e652f5519a2450c34004560a
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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