shithub: scc

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

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

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