shithub: scc

ref: 681e67865a4f1ef968ea8dc981ac62279abef8ad
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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