shithub: scc

ref: da7698a0ff0faf4e02663430914b384a2f7276eb
dir: /lib/c/src/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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