shithub: scc

ref: 355f73cb919d009d7527b5083ae8341f0ceea97d
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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