shithub: scc

ref: 4f93908533138a0efbdffd880003438f98af736e
dir: /src/libc/stdio/fgetc.c/

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

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