shithub: scc

ref: 6bebff844a6aa4f95675dc7beae9ff24d06464b0
dir: /src/libc/stdio/fgetc.c/

View raw version
#include <stdio.h>

#undef fgetc

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