shithub: scc

ref: 561e2d1456fd352c6052532bf1bfb22c8dcf0f93
dir: /src/libc/stdio/fputc.c/

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

int
fputc(int c, FILE *fp)
{
	return putc(c, fp);
}