shithub: scc

ref: 970841705f1d80dcbd2717d42545b10220fad35e
dir: /lib/c/fgetc.c/

View raw version

#include <stdio.h>
#undef fgetc

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