shithub: scc

ref: 3e8757f4125a99765fdd625b6a31d2236a93c4cf
dir: /src/libc/stdio/fputc.c/

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

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