shithub: scc

ref: 23cb5f4c52263967dfa971b8912f6a2fcbef02a2
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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