shithub: scc

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

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

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