shithub: scc

ref: 2cba9e1b69528c16908d8cd28854211a604cd45b
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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