shithub: scc

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

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

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