shithub: scc

ref: fdc72651e2932eccc4a8ca5709546c2d7d1d0b6b
dir: /lib/c/fputc.c/

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

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